day27 n种内部类

内部类

  • 内部类就是在一个类内部在定义一个类,比如,A类中定义一个B类,那么B类相对A类来说就成为内部类,而A类相对B类来说就是外部类了。
  1. 成员内部类
  2. 静态内部类
  3. 局部内部类
  4. 匿名内部类
package com.oop.demo10;

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);
            //可以获得外部类的私有方法
        }
    }/*
    局部内部类
    public void method(){
         class Inner{
             public void in(){
             }
         }
    }
    */
}
package com.oop.demo10;
//匿名内部类
public class Test {
    public static void main(String[] args) {
        //没有名字初始化类,不用把实例保存到变量中
        new Apple().eat();

         UserService userService=new UserService(){

            @Override
            public void hello() {

            }
        };
    }
}
class Apple{
    public void eat(){
        System.out.println("1");
    }
}
interface UserService{
    void hello();
}
package com.oop.demo10;
//匿名内部类
public class Test {
    public static void main(String[] args) {
        //没有名字初始化类,不用把实例保存到变量中
        new Apple().eat();

         UserService userService=new UserService(){

            @Override
            public void hello() {

            }
        };
    }
}
class Apple{
    public void eat(){
        System.out.println("1");
    }
}
interface UserService{
    void hello();
}
package com.oop.demo10;
//匿名内部类
public class Test {
    public static void main(String[] args) {
        //没有名字初始化类,不用把实例保存到变量中
        new Apple().eat();

         UserService userService=new UserService(){

            @Override
            public void hello() {

            }
        };
    }
}
class Apple{
    public void eat(){
        System.out.println("1");
    }
}
interface UserService{
    void hello();
}
package com.oop;


import com.oop.demo10.Outer;

public class Application {
    public static void main(String[] args) {
      //先new一个外部类
        Outer outer = new Outer();
        //在通过外部类来实例化内部类
        Outer.Inner inner = outer.new Inner();// outer.new Inner();+alt+enter
        inner.getID();//10


    }
}
上一篇:338. 比特位计数


下一篇:[LeetCode 338.] 比特位计数