zoukankan      html  css  js  c++  java
  • JAVA课后作业

    1.继承条件下的构造方法调用

    package parent;
    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调用基类构造方法,必须是子类构造方法中第一个语句。

    2.下列语句哪一个将引起编译错误?为什么?哪一个会引起运行时错误?为什么?

     d=m,d=c运行时将会报错。因为m是父类对象,d是子类对象。将父类对象转化成子类对象,必须进行强制转换。而d和c是两个互不相干的类对象,不能直接赋值,所以会运行错误。

    3. 左边的程序运行结果是什么? 你如何解释会得到这样的输出? 计算机是不会出错的,之所以得 到这样的运行结果也是有原因的, 那么从这些运行结果中,你能总 结出Java的哪些语法特性?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. 子类对象可以直接赋值给父类的对象而父类对象必须进行强制转换才可以赋值给子类的对象。

    2.子类对父类访问时能覆盖父类中的变量,被覆盖后无论对父类变量进行什么操作,最后都会输出子类的变量。

  • 相关阅读:
    P3图片导致iOS9.3以下崩溃问题
    [ios] 如何调用其他app h5界面调用打开app
    Swift学习中遇到的小坑
    代码行数统计(mac)
    路径专题 绝对路径 根路径 相对路径
    java.lang.StackOverflowError 解决办法
    Myeclipse运行提示错误: 找不到或无法加载主类 test.test1 终极解决办法
    myeclipse的最有用的设置
    关闭myeclipse可视化视图
    数据三大范式
  • 原文地址:https://www.cnblogs.com/limengke/p/7814099.html
Copyright © 2011-2022 走看看