博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA中的内部类(一)
阅读量:6209 次
发布时间:2019-06-21

本文共 2437 字,大约阅读时间需要 8 分钟。

 将一个类定义在另一个类的里面,里面的那个类就叫做内部类(嵌套类,内置类)

内部类的访问规则:

  1. 内部类可以直接访问外部类中的成员,包括私有
  2. 外部类要访问内部类,必须建立内部类对象

之所以可以直接访问外部类中的成员,是因为内部类中持有了一个外部类的引用,格式: 外部类名.this

 

访问格式:

1 当内部类定义在外部类的成员位置上,而且非私有,可以在外部其它类中

可以直接建立内部类对象

格式为:

  外部类名.内部类名 变量名 = 外部类对象.内部类对象

  Outer.Inner in = new Outer().new Inner();

2 当内部类在成员位置上,就可以被成员修饰符所修饰

  比如,private:将内部类在外部类中进行封装

     static:内部类可以被静态修饰,就具备了静态的特性

        当内部类被static修饰后,只能直接访问外部类中的static成员,出现访问局限

        在外部其它类中,如何访问内部static内部类的非静态成员呢:new Outer.Inner().function(); 

        在外部其它类中,如何访问内部static内部类的静态成员呢:Outer.Inner.function(); 

  注意:当内部类中定义了静态成员,该内部类必须是static的

     当外部类中的静态方法访问内部类时,内部类也必须是静态的

 

什么时候用内部类:

  当描述事物的时候,事物的内部还有事物,该事务用内部类在描述

  因为内部事务在使用外部事务的内容

 

1 class Outer 2 {  3     private int x = 3; 4      5     class Inner//内部类 6     { 7         int x = 4; 8         static int y = 5; 9         void function()10         {11             int x = 6;12             System.out.println("Inner :"+x);//直接访问外部类变量//613             System.out.println("Inner :"+this.x);//414             System.out.println("Inner :"+Outer.this.x);//415         }16     }17     18     static class StaticInner19     {20         void function()21         {22             //System.out.println("Inner :"+x);//invalid 访问局限23             System.out.println("Inner :"+y)24         }25     }26     27     void method()28     {29         Inner in = new Inner();//外部类访问内部类的方法30         in.function();31         System.out.println(x);32     }33 }34 35 class InnerClassDemo36 {37     public static void main(String[] args)38     {39         Outer out = new Outer();40         //out.method();41         //System.out.println();42         //直接访问内部类中的成员43         //Outer.Inner in = new Outer().new Inner();44         //in.function(); 45         new Outer.Inner().function(); 46     }47 }

 

内部类定义在局部变量的时候

1 不可以被成员修饰符修饰(static,private之类)

2 可以直接访问外部类中的成员,因为还持有外部类中的引用

  但是不可以访问它所在局部中的变量,只能访问被final修饰的局部变量

1 class Outer 2 { 3     int x = 3; 4      5     void method() 6     { 7         final int y = 4; 8         class Inner 9         {10             void function()11             {12                 System.out.println(Outer.this.x);13                 System.out.println(y);14             }15         }16         new Inner().function();17     }18 }19 20 class InnerClassDemo21 {22     public static void main(String[] args)23     {24         new Outer().method();25     }26 }

 

posted on
2017-06-12 11:48 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/hepengke/p/6985603.html

你可能感兴趣的文章
动态载入Layout 与 论Activity、 Window、View的关系
查看>>
发展中的生命力——Leo鉴书69
查看>>
iOS计算两个时间的时间差
查看>>
细说C#多线程那些事 - 线程同步和多线程优先级
查看>>
Woobuntu woobuntu_build.sh hacking
查看>>
接口与抽象类的区别
查看>>
CORS 专题
查看>>
检查给定串是否存在于由区间及点集的结合内
查看>>
美团团购订单系统优化记
查看>>
Iptables防火墙规则使用梳理
查看>>
使用FileReader接口读取文件内容
查看>>
Spring_使用XML文件的方式配置事务
查看>>
css 点点加载demo
查看>>
TCP/IP 协议族的简介
查看>>
简单单层bp神经网络
查看>>
eclipse Maven 使用记录 ------ 建立 webapp项目
查看>>
解决Python交叉编译后,键盘方向键乱码的问题
查看>>
idea svn 不见的问题
查看>>
AESDK开发之UI消息响应
查看>>
【ArcGIS for Android】经纬度坐标、地图投影坐标、屏幕坐标互相转换
查看>>