标签:key bsd demo str abs href 对象 ram pre
###java类加载到内存中的顺序 如果以new作为例子 Person p = new Person(20),其顺序为:
abstract class AbsDemo {
abstract void show();
}
class Outer {
int x = 1;
public function() {
new AbsDemo() {
void show() {
system.out.println("x ="+x);
}
}.show();
new AbsDemo()
{
void show() {
system.out.println("x ="+x);
void abs() {
system.out.println("the next function");
}
}.abs();
}
}
匿名类部类的格式: new 父类或者接口(){ 定义子类的内容}
标签:key bsd demo str abs href 对象 ram pre
原文地址:https://www.cnblogs.com/1156184981651a/p/13173096.html