|
|
主要有四种的标准的meta-annotation,都在java.lang.annotation的package中...
1.@Target指定那个程序单元可以有其所定义的annotation
(程序单元:class.interface,enum,field,method,parameter,constructor,variable package,annotation。参看ElementType类)
需要import(java.lang.annotation.ElementType;java.lang.annotation.Target;)两个类
<div class="quote_title">引用 |
|