类中类

介绍

如果一个事物的内部包含另一个事物,那么这就是一个类内部包含另一个类。

例如:身体和心脏的关系。又如:汽车和发动机的关系

分类:

1.成员内部类

2.局部内部类(包含匿名内部类)

成员内部类的定义格式

修饰符 class外部类名称

修饰符 class内部类名称{

定义

  1. pub1ic class Body{//外部类
  2. pub1ic class Heart{//成员内部类
  3. //内部类的方法
  4. public void beat(){
  5. System,out. println("心脏跣动:蹦蹦蹦!");
  6. System.out. println("我叫:"+name);//正确写法!
  7. }//外部类的成员变量
  8. private String name;
  9. //外部类的方法
  10. public void methodBody()
  11. System.out. println("外部类的方法");
  12. public String getName(){
  13. return name;
  14. }
  15. public void setName ( String name){
  16. this. name = name;
  17. }
  18. }

调用

注意:内用外,随意访问;外用内,需要内部类对象。
======================= = = =
如何使用成员内部类?有两种方式:
1.间接方式:在外部类的方法当中,使用内部类;然然main只是调用外部类的方法。
2.直接方式,公式:
类名称 对象名=new 类名称();
[外部类名称.内部类名称 对象名= new外部类名称().new内部类名称();]

main

  1. public class Test {
  2. public static void main(String[] args) {
  3. Body b=new Body();
  4. //通过外部内对象调用外部内方法在里面使用内部类heart
  5. b.bodyMethod(); // 间接使用内部类
  6. System.out.println("=========");
  7. //[外部类名称.内部类名称 对象名= new外部类名称().new内部类名称();]
  8. Body.Heart x=new Body().new Heart(); //直接使用
  9. x.beat();
  10. }
  11. }

外部类成员

如果出现了重名现象,那么格式是:外部类名称.this.外部类成员变量名

  1. public class Outer {
  2. int num =6;
  3. public class Inner{
  4. int num=7; //内部成员变量
  5. public void innterMethod(){//内部成员变量
  6. int num=8; //内部局部变量
  7. System.out.println(num); //内部局部变量
  8. System.out.println(this.num); //内部成员变量
  9. System.out.println(Outer.this.num);//使用外部类的成员变量
  10. }
  11. }
  12. }

main

  1. public class Test {
  2. public static void main(String[] args) {
  3. //[外部类名称.内部类名称 对象名= new外部类名称().new内部类名称();]
  4. Outer.Inner inner=new Outer().new Inner();
  5. inner.innterMethod();
  6. }
  7. }

局部类部类

如果一个类是定义在一-个方法内部的,那么这就是一一个局部内部类。
“局部”。只有当前所属的方法才能使用它,出了这个方法外面就不能用了。

定义格式:

  1. 修饰符class 外部类名称{
  2. 修饰符 返回值类型外部类方法名称(参数列表) {
  3. class局部内部类名称{
  4. // ...
  5. }
  6. }
  7. }
  1. public class Outer {
  2. public void OuterMethod(){
  3. class Innter{
  4. void InnterMethod(){
  5. System.out.println("ssss");
  6. }
  7. }
  8. Innter in= new Innter(); //创建 局部内部类对象
  9. in.InnterMethod(); //使用方法
  10. }
  11. }

main

  1. public class Test {
  2. public static void main(String[] args) {
  3. Outer obj=new Outer();
  4. obj.OuterMethod();
  5. }
  6. }

访问问题

局部内部类,如果希望访问所在方法的局部变量,那么这个局部变量必须是【有效final的】。

备注:从Java8+开始,只要局部变量事实不变,那么 final关键字可以省略

原因:

1.new出来的对象在堆內存当中。

2.局部变量是跟着方法走的,在栈内存当中。

3.方法运行结束之后,立刻出栈,局部变量就会立刻消失。

4,但是new出来的对象会在堆当中持续存在,直到垃圾回收消失。

权限问题

小节一下类的权限修饰符:

public > protected >(default)> private

定义一个类的时候,权限修饰符规则:

Q外部类: public/( default)

2.成员内部类: public/ protected/( default)/ private

3.局部内部类:什么都不能写

匿名内部类

匿名键盘输入

  1. public class AnonyMous {
  2. public static void main(String[] args) {
  3. Scanner sb=sc1();
  4. int ssb=sb.nextInt();
  5. System.out.println(ssb);
  6. }
  7. public static void sc (){//匿名键盘输入 无返回值
  8. int a = new Scanner(System.in).nextInt();
  9. System.out.println(a);
  10. }
  11. public static Scanner sc1 (){//匿名键盘输入 有返回值
  12. return new Scanner(System.in);
  13. }
  14. }

匿名接口类

定义格式

  1. 接口名称 对象名 = new 接口名称() {
  2. //覆盖重写所有抽象方法
  3. };

如果接口的实现类(或者是父类的子类)只需要使用唯一的一次,
那么这种情况下就可以省略掉该类的定义,而改为使用[匿名内部类]。

使用

  1. public interface MyInterface {
  2. void print();
  3. }
  1. public class Test {
  2. public static void main(String[] args) {
  3. MyInterface myInterface = new MyInterface() {
  4. @Override
  5. public void print() { //覆写了局部类
  6. System.out.println("匿名内部类实现了方法");
  7. }
  8. };
  9. myInterface.print();
  10. }
  11. }