博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
课程作业
阅读量:6112 次
发布时间:2019-06-21

本文共 2070 字,大约阅读时间需要 6 分钟。

一、动手实验:继承条件下的构造方法调用

class Grandparent

{

    public Grandparent()

  {

         System.out.println("GrandParent Created.");

}

    public Grandparent(String string)

{

         System.out.println("GrandParent Created.String:" + string);

 }

}

class Parent extends Grandparent

{

    public Parent()

 {

         super("Hello.Grandparent.");

         System.out.println("Parent Created");

       // super("Hello.Grandparent.");

  }

}

class Child extends Parent

{

    public Child()

 {

        System.out.println("Child Created");

  }

}

public class TestInherits

{

    public static void main(String args[])

 {

         Child c = new Child();

  }

}

运行结果:

Super在前:GrandParent Created.String:Hello.Grandparent.

Parent Created

Child Created

Super在后直接报错

所以通过 super 调用基类构造方法,必须是子类构造方法中的第一个语句。

二、方法覆盖要求子类与父类的方法一模一样,否则就是方法重载(overload)!

请自行编写代码测试以下特性(动手动脑):

在子类中,若要调用父类中被覆盖的方法,可以使用super关键字。

public class Num {

 

public static void main(String[] args) {

// TODO Auto-generated method stub

N a=new N(0);

Num2 b=new Num2(1);

}

 

}

 

class N{

N(int i){

 System.out.println(i);

}

}

class Num2 extends N{

Num2(int a){

super(a);

}

}

运行结果:

0

1

三、

public class ParentChildTest {

public static void main(String[] args) {

Parent parent=new Parent();

parent.printValue();

Child child=new Child();

child.printValue();

 

parent=child;

parent.printValue();

 

parent.myValue++;

parent.printValue();

 

((Child)parent).myValue++;

parent.printValue();

 

}

}

 

class Parent{

public int myValue=100;

public void printValue() {

System.out.println("Parent.printValue(),myValue="+myValue);

}

}

class Child extends Parent{

public int myValue=200;

public void printValue() {

System.out.println("Child.printValue(),myValue="+myValue);

}

}

 

1.   程序运行结果是什么?

Parent.printValue(),myValue=100

Child.printValue(),myValue=200

Child.printValue(),myValue=200

Child.printValue(),myValue=200

Child.printValue(),myValue=201

 

2.   你如何解释会得到这样的输出?

子类对象会将父类的对象进行覆盖

3.   计算机是不会出错的,之所以得到这样的运行结果也是有原因的,那么从这些运行结果中,你能总结出Java的哪些语法特性?

对象是子类型的,它就调用子类型的方法,是父类型的,它就调用父类型的方法。

如果子类与父类有相同的字段,则子类中的字段会代替或隐藏父类的字段,子类方法中访问的是子类中的字段(而不是父类中的字段)。如果子类方法确实想访问父类中被隐藏的同名字段,可以用super关键字来访问它。

如果子类被当作父类使用,则通过子类访问的字段是父类的!

转载于:https://www.cnblogs.com/bangandwolf/p/7818871.html

你可能感兴趣的文章
ASP.NET 学习笔记_08 控件和母版
查看>>
监测ASP.NET应用程序性能最简单的方法
查看>>
每日英语:Rescuers Struggle to Reach Quake Victims
查看>>
VC++实现非窗口类中使用定时器的方法
查看>>
Activity在屏幕显示的方向切换
查看>>
Android特色开发(3):Google Map
查看>>
python进阶学习笔记(三)
查看>>
函数调用vc++笔记----CRecordset类
查看>>
C#反射技术的简单操作(读取和设置类的属性)
查看>>
错排公式
查看>>
ecshop注册送红包ecshop注册就送相应金额
查看>>
零成本建立的.NET小组开发平台
查看>>
Installed .NET Framework 4.5 Ajax POST IIS hang
查看>>
cocos2d-x make: *** [clean-box2d_static-armeabi] Error 1
查看>>
VS2010无法修改资源文件
查看>>
邮箱工具(尚未完成)的几个组件类
查看>>
inkscape - 百度百科
查看>>
使用 Python 进行稳定可靠的文件操作
查看>>
数据结构之后缀数组
查看>>
.Net 中DataSet和DataTable的 区别与联系
查看>>