静态的内部类寄对象寄存在外部类的里面
Student 对象寄存在Main类里
Main.Student stu= new Main.Student();
public class Main(){
public static void main(String[] args){
}
static class Student(){
}
}
静态的内部类寄对象寄存在外部类的里面
Student 对象寄存在Main类里
Main.Student stu= new Main.Student();
public class Main(){
public static void main(String[] args){
}
static class Student(){
}
}