這篇文章主要介紹“java語言注解的基礎(chǔ)概念”,在日常操作中,相信很多人在java語言注解的基礎(chǔ)概念問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”java語言注解的基礎(chǔ)概念”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的昔陽網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
1、RetentionPolicy.SOURCE:注解只保留在源文件,當(dāng)Java文件編譯成class文件的時(shí)候,注解被遺棄;
2、RetentionPolicy.CLASS:注解被保留到class文件,但jvm加載class文件時(shí)候被遺棄,這是默認(rèn)的生命周期;
3、RetentionPolicy.RUNTIME:注解不僅被保存到class文件中,jvm加載class文件之后,仍然存在;
這3個(gè)生命周期分別對(duì)應(yīng)于:Java源文件(.java文件)--->.class文件--->內(nèi)存中的字節(jié)碼。
那怎么來選擇合適的注解生命周期呢?
首先要明確生命周期長(zhǎng)度SOURCE 下面來介紹下運(yùn)行時(shí)注解的簡(jiǎn)單運(yùn)用。 獲取注解 你需要通過反射來獲取運(yùn)行時(shí)注解,可以從Package、Class、Field、Method...上面獲取,基本方法都一樣,幾個(gè)常見的方法如下: 要使用這些函數(shù)必須先通過反射獲取到對(duì)應(yīng)的元素:Class、Field、Method等。 自定義注解 來看下自定義注解的簡(jiǎn)單使用方式,這里先定義3個(gè)運(yùn)行時(shí)注解: 這3個(gè)注解分別適用于不同的元素,并都帶有不同的屬性,在使用注解是需要設(shè)置這些屬性值。 再定義一個(gè)測(cè)試類來使用這些注解: 使用還是很簡(jiǎn)單的,最后來看怎么在代碼中獲取注解信息: 所做的操作都是通過反射獲取對(duì)應(yīng)元素,再獲取元素上面的注解,最后得到注解的屬性值。 看一下輸出情況,這里我直接顯示在手機(jī)上: 到此,關(guān)于“java語言注解的基礎(chǔ)概念”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!/**
* 獲取指定類型的注解
*/
public A getAnnotation(Class annotationType);
/**
* 獲取所有注解,如果有的話
*/
public Annotation[] getAnnotations();
/**
* 獲取所有注解,忽略繼承的注解
*/
public Annotation[] getDeclaredAnnotations();
/**
* 指定注解是否存在該元素上,如果有則返回true,否則false
*/
public Boolean isAnnotationPresent(Class extends Annotation> annotationType);
/**
* 獲取Method中參數(shù)的所有注解
*/
public Annotation[][] getParameterAnnotations();
// 適用類、接口(包括注解類型)或枚舉
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ClassInfo {
String value();
}
// 適用field屬性,也包括enum常量
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface FieldInfo {
int[] value();
}
// 適用方法
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MethodInfo {
String name() default "long";
String data();
int age() default 27;
}
/**
* 測(cè)試運(yùn)行時(shí)注解
*/
@ClassInfo("Test Class")
public class TestRuntimeAnnotation {
@FieldInfo(value = {1, 2})
public String fieldInfo = "FiledInfo";
@FieldInfo(value = {10086})
public int i = 100;
@MethodInfo(name = "BlueBird", data = "Big")
public static String getMethodInfo() {
return TestRuntimeAnnotation.class.getSimpleName();
}
}
/**
* 測(cè)試運(yùn)行時(shí)注解
*/
private void _testRuntimeAnnotation() {
StringBuffer sb = new StringBuffer();
Class> cls = TestRuntimeAnnotation.class;
Constructor>[] constructors = cls.getConstructors();
// 獲取指定類型的注解
sb.append("Class注解:").append("\n");
ClassInfo classInfo = cls.getAnnotation(ClassInfo.class);
if (classInfo != null) {
sb.append(Modifier.toString(cls.getModifiers())).append(" ")
.append(cls.getSimpleName()).append("\n");
sb.append("注解值: ").append(classInfo.value()).append("\n\n");
}
sb.append("Field注解:").append("\n");
Field[] fields = cls.getDeclaredFields();
for (Field field : fields) {
FieldInfo fieldInfo = field.getAnnotation(FieldInfo.class);
if (fieldInfo != null) {
sb.append(Modifier.toString(field.getModifiers())).append(" ")
.append(field.getType().getSimpleName()).append(" ")
.append(field.getName()).append("\n");
sb.append("注解值: ").append(Arrays.toString(fieldInfo.value())).append("\n\n");
}
}
sb.append("Method注解:").append("\n");
Method[] methods = cls.getDeclaredMethods();
for (Method method : methods) {
MethodInfo methodInfo = method.getAnnotation(MethodInfo.class);
if (methodInfo != null) {
sb.append(Modifier.toString(method.getModifiers())).append(" ")
.append(method.getReturnType().getSimpleName()).append(" ")
.append(method.getName()).append("\n");
sb.append("注解值: ").append("\n");
sb.append("name: ").append(methodInfo.name()).append("\n");
sb.append("data: ").append(methodInfo.data()).append("\n");
sb.append("age: ").append(methodInfo.age()).append("\n");
}
}
System.out.print(sb.toString());
}
文章標(biāo)題:java語言注解的基礎(chǔ)概念
轉(zhuǎn)載來于:http://weahome.cn/article/joeisj.html