java技术博客

jsp博客
数据加载中……
ObjectTypeTest.java

 

/**
*通过这个程序,测试对象类型的多态实现
*/

public class ObjectTypeTest{
public static void main(String[] args){
B a
=new B();
a.method2();
}
}

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");}

}

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


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


网站导航: