我有两个这样定义的类:
class A {
public static String getName(){
Class c = getCalledClass();
return c.getSimpleName();
}
}
class B extends A {
//no methods are defined here!
}
我想知道是否可以编写static
方法以getCalledClass()
使调用A.getName()
返回A
并B.getName()
返回B
?
谢谢。