0

我搜索在java中获取函数的所有名称的方法。例如:

public String doSomething(String user, boolean tree, String[] arr){
// HERE I want to get all the names of the params, meaning: user, tree and arr, and do something with them
}

我该怎么做?

4

1 回答 1

0

您可以,但前提是您在代码中有调试信息。这些变量的名称主要是为您而存在的,而不是为处理器而存在的。

详情在这里:

我可以使用 Java 反射获取方法参数名称吗?

于 2013-08-21T14:57:01.913 回答