Java
Annotation sınıfı tanımlamak
Örnek:
Örnek:
Annotation sınıfı tanımlamak
Örnek:
// declare a new annotationgetAnnotation
@Retention(RetentionPolicy.RUNTIME)
@interface Demo {
String str();
int val();
}
Örnek:
Class<?> myClass = Class.class;
MyAnnotation myAnnotation = myClass.getAnnotation(MyAnnotation.class);
Hiç yorum yok:
Yorum Gönder