《Java编程思想》-内部类

普通内部类

① 可以在其外部类范围内创建对象
② 不能在非static 内部类当中 创建 static 方法static域

public class Test {
class Destination {
private String label;
Destination(String whereTo) {}
== ② // private static void enen() {}==
}
public Destination destination(String hh) {
return new Destination(hh); // ①
}
public static void main(String[] args) {
Test p = new Test();
// Test.Destination destination2=new Destination(“123”);
Test.Destination destination= p.destination(“123”);
}
}

静态内部类

无法从嵌套类的对象中访问非静态的外部类对象

public class Test {
public int a;
public static class Wheel{
public void interact() { System.out.println(a); }// 此处报错
}
}


创建静态内部类的方式不需要其外部类的对象

public class Test {
public int a;
public static class Wheel{}
public static Wheel wheel2() { == //必须是静态的 ==
return new Wheel(); //
}
public static void main(String[] args) {
Wheel wheel= wheel2();
// Wheel wheel= new Wheel(); 也可以创建静态内部 因为是静态类
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值