我可以使用Java反射获取方法参数名吗? [英] Can I obtain method parameter name using Java reflection?

查看:132
本文介绍了我可以使用Java反射获取方法参数名吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我有这样的课程:

public class Whatever
{
  public void aMethod(int aParam);
}

有没有办法知道 aMethod 使用名为 aParam 的参数,类型为 int

is there any way to know that aMethod uses a parameter named aParam, that is of type int?

推荐答案

总结:


  • 获取参数名称​​是如果在编译期间包含调试信息,则可能。有关更多详细信息,请参见此答案

  • 否则获取参数名称​​不可能

  • 使用 method.getParameterTypes()获取参数类型是可能的

  • getting parameter names is possible if debug information is included during compilation. See this answer for more details
  • otherwise getting parameter names is not possible
  • getting parameter type is possible, using method.getParameterTypes()

为编辑器编写自动完成功能(正如您在其中一条评论中所述)有几个选项:

For the sake of writing autocomplete functionality for an editor (as you stated in one of the comments) there are a few options:


  • 使用 arg0 arg1 arg2 等。

  • 使用 intParam stringParam objectTypeParam 等。

  • 使用组合上面 - 前者用于非原始类型,后者用于原始类型。

  • 根本不显示参数名称 - 只是类型。

  • use arg0, arg1, arg2 etc.
  • use intParam, stringParam, objectTypeParam, etc.
  • use a combination of the above - the former for non-primitive types, and the latter for primitive types.
  • don't show argument names at all - just the types.

这篇关于我可以使用Java反射获取方法参数名吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆