自定义的注解类:
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME) //注解的生命周期保存RUNTIME时
@Target({ElementType.METHOD,ElementType.TYPE})//注解使用的范围(可以是方法,也可以是类)
public @interface SopAnnotation
{
String color(); //注解的一个属性 import java.lang.annotation.*;