内部类的继承

如果一个类继承内部类,则创建该类的对象时需提供一个外部类的对象作为构造方法的参数。

 

class Car 
{ 
    class Wheel 
    { 

    } 
} 

class SuperWheel extends Car.Wheel 
{ 
    SuperWheel(Car car) 
    { 
        car.super(); 
    } 

    public static void main(String [] args) 
    { 
        Car car = new Car(); 
        SuperWheel wl = new SuperWheel(car); 
    } 
} 

 

你可能感兴趣的:(类的继承)