0
次のコードでは、内部クラス 'wheel'にどのように到達できますか?内部クラスのインスタンス化
public class InstantiateClass {
public static void main(String[] args) {
Car c = new Car();
//not sure how to get an instance of 'Wheel' here
}
}
class Car{
public static class Wheel{
}
}
私は非公開のネストされたクラス(この場合はインナークラスではない)を疑います。 –