内部类杂记

package com.mypackage.oop.demo13;

public class Outer {

    private int id = 10;
    public void out(){
        System.out.println("这是外部类的方法");
    }

    public class Inner{
        public void in(){
            System.out.println("这是内部类的方法");
        }

        //内部类访问外部类的一些属性(包括私有属性)(前提是,内部类不是静态的情况下)
        public void getID(){
            System.out.println(id);
        }
    }

    //一个Java类中可以有多个class类,但是只能有一个public class

    public void method(){
        //局部内部类
        class Inner{
            public void in(){

            }
        }


    }
}
package com.mypackage.oop.demo13;

public class Application13 {
    public static void main(String[] args) {
        //new
        Outer outer = new Outer();

        //通过外部类来实例化内部类
        Outer.Inner inner = outer.new Inner();
        inner.in();
        inner.getID();
    }
}
package com.mypackage.oop.demo13;

public class Test {
    public static void main(String[] args) {
        Apple apple = new Apple();
        //没有名字初始化类,不用将实例保存到变量中
        new Apple().eat();
    }
}

class Apple{
    public void eat(){
        System.out.println("1");
    }
}

interface UserService{
    void hello();
}

你可能感兴趣的:(狂神说Java系列笔记,java)