• 2021-04-14
    Outer类中定义了一个成员内部类Inner,需要在main()方法中创建Inner类实例对象,以下四种方式哪一种是正确的?
  • Outer.Inner in = new Outer().new Inner();

    内容

    • 0

      定义一个Father和Child类,并进行测试。 要求如下: 1)Father类为外部类,类中定义一个私有的String类型的属性name,name的值为“zhangjun”。 2)Child类为Father类的内部类,其中定义一个introFather()方法,方法中调用Father类的name属性。 3)定义一个测试类Test,在Test类的main()方法中,创建Child对象,并调用introFather ()方法

    • 1

      What is the material of the doll's packing? A: The inner is Bag and the outer is Carton. B: The inner is Bag and the outer is Box. C: The inner is Box and the outer is Carton. D: The inner and the outer are both Box.

    • 2

      (6-10)有如下代码,请为指定位置选择正确代码。( ) class Outer{ class Inner{ void show() { System.out.println("inner"); } } public void aOuterMethod() { // ① } public static void main(String[] args) { Outer out=new Outer(); // ② Outer.Inner inn=out.new Inner(); // inn.show(); } }

    • 3

      关于Java中的非静态嵌套类,下面说法错误的是()。 A: 非静态嵌套类定义在成员位置、方法、代码块等位置 B: 非静态嵌套类中可以定义实例成员、静态常量、静态方法等成员 C: 非静态嵌套类创建对象时必须先有外部类的对象 D: 非静态嵌套类可以直接访问外部类所有成员

    • 4

      【简答题】创建一个包含内部类的类,外部类中定义一个名为str的String字符串并初始化任意值,在内部类中定义,跟外部类同种类型且同名的变量,并在内部类中定义一个方法,分别打印外部类和内部类的变量