N种内部类
package com.oop.Demo9;
public class Outer {
private /*static*/ int id=10;
public void out(){
System.out.println("这是外部类的方法");
}
public class Inner{
public void in(){
System.out.println("这是内部类的方法");
}
/*
//加上static就变成静态内部类,没办法访问非静态属性,这样后面的id就取不到了
//因为id在它之后,那时候还没出生,除非将上面的id也变成Static就可
public static class Inner{
public void in(){
System.out.println("这是内部类的方法");
}*/
//内部类通过访问外部类的一些私有属性
public void getID(){
System.out.println(id);
}
}
}
*--------------------------------------------------------------------
package com.oop;
public class Application {
public static void main(String[] args) {
//外部类new
Outer outer = new Outer();
//通过外部类来实例化内部类
//这个就是成员内部类
Outer.Inner inner = outer.new Inner();
inner.in();
inner.getID();
}
=====================================================================
package com.oop.Demo10;
public class Outer {
//在方法里面写的类
public void method(){
//局部内部类
class Inner{
public void in(){
}
}
}
}
//一个java类中可以有多个class类,但是只能有一个public class
/*class A{
public static void main(String[] args) {
}
}*/
==========================================================
package com.oop.Demo10;
public class Test {
public static void main(String[] args) {
/* //实例化对象
Apple apple = new Apple();*/
//没有名字初始化类,不用将实例保存到变量中
new Apple().eat();
UserService userService = new UserService() {
@Override
public void hello() {
}
};
}
}
class Apple{
public void eat(){
System.out.println("1");
}
}
interface UserService{
void hello();
}
--------------------------------------------------------------------------------------
不推荐使用这些写法