在android(java)中运行时获取函数名

时间:2013-03-12 03:13:26

标签: java android runtime

我想在android中使用一个方法:getCallerName()。它将打印使用它的方法的名称。示例:如果我有方法:

void doSomething(){
    getCallerName(); // This line will print "doSomething"
} 
//or another example
void foo(){
   getCallerName(); // this line will print "foo"
}

有谁能告诉我,我可以在运行时这样做吗?我怎么能这样做?提前谢谢!

0 个答案:

没有答案