java技术博客

jsp博客
<2008年10月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

统计

  • 随笔 - 84
  • 文章 - 1
  • 评论 - 2
  • 引用 - 0

常用链接

留言簿(3)

随笔分类

随笔档案

文章档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜

ObjectVarTest.java
/**
*测试这个程序,测试对象类型的动态绑定
*/
public class ObjectVarTest
{
public static void main(String[] args){
B b=new B();
C.method3(b);
}
}
class A{
public void method1(){
System.out.println("this is class A method1");
}
}
class B extends A{
public void method1(){
System.out.println("this is class B method1");
public void method2(){
System.out.println("this is class B method2");
}
}
class c{
public static void method3(A a){
a.method1();
}}
}

posted on 2008-10-22 23:53 郭兴华 阅读(81) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航: