.net和JAVA面向对象,继承有趣的细节
原型是同事间讨论的一道面试题。估计这题秒杀了不少人,LZ也被秒了。
但这个题里隐藏了一个很有趣的细节,这个细节不说清楚,不少人会其实死的冤枉。
这是C#的代码。
class Program { static void Main(string[] args) { Father s1 =new Son1(); Son1 s2 =new Son1(); s1.Say(); s2.Say(); Console.Read(); } } public class Father { public void Say() { Console.WriteLine("This is Father‘s method"); } } public class Son1 : Father { public void Say() { Console.WriteLine("This is Son1‘s method"); } }
执行结果是 This is Father‘s method
This is Son1‘s method
不知大家有没有答对,LZ想也没想直觉就是
This is Son1‘s method
This is Son1‘s method
因为之前看过JAVA的内容。
这是原贴:http://blog.csdn.net/zhengzhb/article/details/7496949
仔细想了下.NET算是想通了。但这事就有趣了。
因为JAVA的结果和.NET完全两样。(LZ学设计模式什么的都是照着JAVA学的,之前一直感觉也相信着两者在面向对象方面是一个模子)。
这是JAVA的代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 |
class Father { public
void Say(){ System.out.println( "This is Father‘s method" ); } } class Son1 extends
Father{ public
void Say(){ System.out.println( "This is Son1‘s method" ); } } public
class FF { public
static void main(String[] args){ Father s1 = new
Son1(); Son1 s2= new
Son1(); s1.Say(); s2.Say(); } } |
结果是
This is Son1‘s method
This is Son1‘s method
C#看的相对深入点的是《clr via c#》,再底层些粗粗浏览了《windows核心编程》
但JAVA却不知道有哪些书籍,能讲到对象的堆分配,方法调用的细节。
借此文,求JAVA的答案,求书。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。