註釋的型別
註釋有三種型別。
-
標記註釋 - 沒有方法的註釋
@interface CustomAnnotation {}
-
單值註釋 - 具有一個方法的註釋
@interface CustomAnnotation { int value(); }
-
多值註釋 - 具有多個方法的註釋
@interface CustomAnnotation{ int value1(); String value2(); String value3(); }
註釋有三種型別。
標記註釋 - 沒有方法的註釋
@interface CustomAnnotation {}
單值註釋 - 具有一個方法的註釋
@interface CustomAnnotation {
int value();
}
多值註釋 - 具有多個方法的註釋
@interface CustomAnnotation{
int value1();
String value2();
String value3();
}