一、異常現象:
自定義注解時,
@Retention和@Target都能導入進來,但是卻報下列錯誤:
RetentionPolicy cannot be resolved to a variable
ElementType cannot be resolved to a variable
二、異常原因:
沒有引入這兩個類
三、解決方法:
手動引入RetentionPolicy和ElementType這兩個類
方法一:
import java.lang.annotation.*
方法二:
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.ElementType;