91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java 反射注解信息

發布時間:2020-06-22 13:20:50 來源:網絡 閱讀:365 作者:wx5d21d5e6e5ab1 欄目:編程語言

Table,用類表示數據庫的表

@Target(value= {ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Table{
    String value();

}

類中的屬性,每個屬性表示一個字段

    @Target(value= ElementType.FIELD)
    @Retention(RetentionPolicy.RUNTIME)
    public @interface Fields {
        String columnName();
        String type();
        int length();
    }

類:

@Table("tb_student")
public class Student {

@Fields(columnName="id",type="int",length=10)
private int id;

@Fields(columnName="studentName",type="varchar",length=10)
private String studentName;

@Fields(columnName="age",type="int",length=3)
private int age;

public int getId() {
    return id;
}
public void setId(int id) {
    this.id = id;
}
public String getStudentName() {
    return studentName;
}
public void setStudentName(String studentName) {
    this.studentName = studentName;
}
public int getAge() {
    return age;
}
public void setAge(int age) {
    this.age = age;
}

}

解析器:

public class Deam {

public static void main(String[] args) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException, NoSuchFieldException {
    try {
        Class c=Class.forName("cn.sxt.in.Student");
        Annotation[] annotation= c.getAnnotations();  //獲得類的所有注解,只是類的,不包括方法等

        for(Annotation a:annotation)
        {
            System.out.println(a);
        }
        //獲得指定類的注解
        Table tb=(Table) c.getAnnotation(Table.class);
        System.out.println(tb.value());

        //獲得屬性的注解
        Field f=c.getDeclaredField("studentName"); //通過內容返回屬性
        Fields f2=f.getAnnotation(Fields.class); //通過屬性返回注解
        System.out.println(f2.columnName()+"-->"+f2.type()+"-->"+f2.length());

    } catch (ClassNotFoundException e) {

        e.printStackTrace();
    }
}
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

揭西县| 大邑县| 理塘县| 平邑县| 博爱县| 青田县| 阳泉市| 凤冈县| 扶余县| 犍为县| 阿拉善盟| 玉龙| 抚州市| 凤翔县| 融水| 五常市| 清丰县| 南宫市| 南丰县| 西平县| 河池市| 天等县| 盈江县| 申扎县| 威远县| 祁阳县| 常德市| 苏州市| 土默特右旗| 文安县| 雷波县| 九台市| 盘山县| 阿拉尔市| 蒲城县| 丰城市| 马边| 寻甸| 德化县| 景宁| 光泽县|