我創建了一個註釋:爲什麼在註釋「Integer.TYPE」顯示錯誤「屬性值必須是常量」
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Test
{
Class something();
}
但是,當我把它與Integer.TYPE
(爲int的返回類型),它顯示錯誤。
public class TestA
{
@Test(Integer.TYPE)
public int id;
}