标签: java variables annotations metaprogramming
根据API中的类ElementType,您可以注释局部变量和方法参数。
这是怎么做到的?
答案 0 :(得分:6)
通常的方式:
void method(@SomeAttr int param){ @SomeAttr int local = param * 2; }