我想在android中使用一个方法:getCallerName()
。它将打印使用它的方法的名称。示例:如果我有方法:
void doSomething(){
getCallerName(); // This line will print "doSomething"
}
//or another example
void foo(){
getCallerName(); // this line will print "foo"
}
有谁能告诉我,我可以在运行时这样做吗?我怎么能这样做?提前谢谢!