我有一个抽象类,我想知道是否有可能知道该类在其方法之一中的实例。
我的意思是,如果有什么办法可以得到它。像一些Java方法或类似的东西。myClass.whereAmI()
例如:
public abstract class MyClass {
public void myMethod(String string){
String instance = MyClass.getClass(); //I want to get the type of the instance.
....
}
}
这可能吗?
慕工程0101907
相关分类