如何在java反射中获取当前执行的变量名称

时间:2015-11-10 05:47:08

标签: java reflection

这个问题与Getting the name of the current executing method不同。因为我想让变量名不执行方法名。

 public static int addTwoNumbers(int a,int b){
     int result=0;

     result=a+b;

     //system.out.println(error variable name);

     return result;
    }

在上面的代码片段addTwoNumbers函数中添加给定的两个值并返回结果。我的要求是这样的。让我们说用户不小心传递了不同的数据类型值(double和string)。然后我想输出那个导致变量name.so这样做我想得到当前正在执行的变量名。我想知道是否有可能通过java反射或任何其他API获取当前执行变量名。请分享您的想法。

0 个答案:

没有答案