有可能在一个实例化自己的类中知道吗?我有一个可以被许多其他类实例化的类 Listener,所以在 Listener 中我想知道谁是“父亲”;
我不想用
if(objectA instanceOf Class)
....
但我认为是这样的:
if(this.instanceOf Class1)
System.out.println("Hello i'm the class Listener instanced by Class1);
else if(this.instanceOf Class2)
System.out.println("Hello i'm the class Listener instanced by Class2);
这是可能的还是我白痴?;) 谢谢尼古拉