zoukankan      html  css  js  c++  java
  • 局部内部类

    局部内部类

    示例代码

    //外部类
    public class Outer {
        private String name = "qiudajiang";
        private int age = 10;
        //外部类方法
        public void showOuter(){
            //局部变量
            String address = "xxx";
            class Inner{
                //局部内部类属性
                private String phone = "123";
                private String email = "qdj168@qq.com";
                public void showInner(){
                    //访问外部类属性
                    System.out.println(Outer.this.name);
                    System.out.println(Outer.this.age); //如果showOuter方法是一个静态方法,则需要实例化一个外部类对象,才能访问外部类属性
                    //访问内部类属性
                    System.out.println(this.email);
                    System.out.println(this.phone);
                    //访问局部变量,jdk1.7要求,变量必须是常量 final ,jdk1.8会自动添加final
                    System.out.println(address);
                }
            }
            //想要调用showInner方法,需要创建一个局部类对象
            Inner inner = new Inner();
            inner.showInner();
        }
    }

    测试代码

    public class OuterTest {
        public static void main(String[] args) {
            Outer outer = new Outer();
            outer.showOuter();
        }
    }
  • 相关阅读:
    python数据类型:字典Dictionary
    python数据类型:元组
    python数据类型:列表List和Set
    python数据类型:字符串
    python数据类型:Number数字
    Python控制语句
    Python运算符
    python基础语法
    Linux shell Script初识
    linux awk详解
  • 原文地址:https://www.cnblogs.com/qiudajiang/p/13234228.html
Copyright © 2011-2022 走看看