注释局部变量或方法参数

时间:2009-09-02 09:39:05

标签: java variables annotations metaprogramming

根据API中的类ElementType,您可以注释局部变量和方法参数。

这是怎么做到的?

1 个答案:

答案 0 :(得分:6)

通常的方式:

void method(@SomeAttr int param){
    @SomeAttr 
    int local = param * 2;
}