欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

java高級用法之注解和反射講義

 更新時間:2021年05月11日 12:55:17   作者:CB  
這篇文章主要給大家介紹了關于java高級用法之注解和反射講義的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧

前言

反射和注解在java中偏高級用法,一般在各種框架中被廣泛應用,文章簡單介紹下反射和注解的用法,希望對你的工作學習有一定幫助

java注解

什么是注解

Java 注解也就是Annotation是從 Java5 開始引入的新技術

Annotation的作用:

  • 不是程序本身,可以對程序作出解釋
  • 可以被其他程序(編譯器等)讀取

Annotation的格式:

  • 注解以@注釋名在代碼中存在的,可以添加一些數(shù)值,例如SuppressWarnings(value=”unchecked”)

Annotation在里使用?

  • 可以附加在package,class、method,filed等上面,相當與給他們添加了額外的輔助信息,我們可以通過反射機制編程實現(xiàn)對這些元數(shù)據(jù)的訪問

元注解

元注解的作用就是負責注解其他注解,java定義了4個標準的meta-annotation類型,被用來提供對其他annotation類型作說明
這些類型和它們所支持的類在java.lang.annotation包中可以找到(@Target,@Retention,@Documented,@Inherited)

  • @Target:用于描述使用范圍(注解在什么地方使用)
  • @Retetion:表示需要在什么級別保證該注釋信息,用于描述注解的生命周期(source<class<runtime)
  • @Document:英文意思是文檔。它的作用是能夠?qū)⒆⒔庵械脑匕?Javadoc 中去。
  • @Inherited:注解了的注解修飾了一個父類,如果他的子類沒有被其他注解修飾,則它的子類也繼承了父類的注解

自定義注解

使用@interface自定義注解時,自動繼承了java.lang.annotation.Annotation接口

public class Test03 {
    //注解可以顯示賦值,如果沒有默認值,一定要給注解賦值
    @Myannotation2(name = "aj",schloos = {"機電學院"})
    public void test(){

    }

    @MyAnnotation3("")
    public void test2(){

    }
}

@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@interface Myannotation2{
    // 注解的參數(shù),參數(shù)類型+參數(shù)名
    String name() default  "";

    int age() default  0;

    //如果默認值為-1 代表不存在
    int id() default -1;

    String[] schloos() ;
}

@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@interface  MyAnnotation3{

    String value();
}

給代碼加注解其實就是這么多,關鍵還是我們?nèi)绾稳プx取注解,這就需要用到反射,下面重點介紹java反射

java反射

反射是java被視為動態(tài)語言的關鍵,反射機制允許程序在執(zhí)行期借助Reflection API取得任何類的內(nèi)部信息,并能直接操作任意對象內(nèi)部熟悉及方法

Class c = Class.forName("java.lang.String")

加載完類之后,在堆內(nèi)存的方法區(qū)就產(chǎn)生了一個Class類型的對象(一個類只有一個Class對象),這個對象就包含了完整的類的結(jié)構(gòu)信息。我們可以通過這個對象看到類的結(jié)構(gòu)。這個對象就像一面鏡子,透過這個鏡子看到類的結(jié)構(gòu),所以我們稱之為:反射

Class類

對于每個類而言,JRE都為其保留一個不變的Class類型的對象,一個Class對象包含了特定某個結(jié)構(gòu)的有關信息。

  • Class本身也是一個類
  • Class對象只能由系統(tǒng)建立對象
  • 一個加載的類在jvm中只會有一個CLass實例
  • 一個Class對象對應的是一個加載到jvm中的一個.class文件
  • 每個類的實例都會記得自己是由哪個Class實例生成的
  • 通過Class可以完整的得到一個類中的所有被加載的結(jié)構(gòu)
  • Class類是Reflection的根源,針對任何你想動態(tài)加載、運行的類,唯有先獲得相應的Class對象

Class類的常用方法

反射獲取對象

public class Test02 {
    public static void main(String[] args) throws ClassNotFoundException {
        Person person = new Student();
        System.out.println("這個人是"+person.name);

        //通過對象獲取
        Class c1 = person.getClass();
        System.out.println(c1.hashCode());

        //通過forname獲取
        Class c2 = Class.forName("reflection.Student");
        System.out.println(c2.hashCode());

        //通過類名獲取
        Class c3 = Student.class;
        System.out.println(c3.hashCode());

        //獲得父類類型
        Class c4 = c1.getSuperclass();
        System.out.println(c4);
    }
}

 

@Data
class Person{
    public String name;
    public int age;
}


class Student extends  Person{
    public Student(){
        this.name = "學生";
    }
}

class Teacher extends  Person{
    public Teacher(){
        this.name = "老師";
    }
}

反射操作方法、屬性

public class Test03 {
    public static void main(String[] args) throws ClassNotFoundException, IllegalAccessException, InstantiationException, NoSuchMethodException, InvocationTargetException, NoSuchFieldException {
        Class c1 = Class.forName("reflection.Student");

        Student student = (Student) c1.newInstance();
        System.out.println(student.getName());

        // 通過反射操作方法
        Method setName = c1.getDeclaredMethod("setName", String.class);
        setName.invoke(student, "zhangshan");
        System.out.println(student.getName());


        Student student1 = (Student) c1.newInstance();
        Field name = c1.getDeclaredField("name");
        //反射不能直接操作私有屬性,需要手動關掉程序的安全檢測,setAccessible(true)
        name.setAccessible(true);
        name.set(student1,"lisi");
        System.out.println(student1.getName());

    }
}

性能檢測

public class Test04 {

    public static void test01(){
        User user = new User();
        long startTime = System.currentTimeMillis();

        for (int i = 0; i <1000000000 ; i++) {
            user.getName();
        }
        long endTime = System.currentTimeMillis();

        System.out.println(endTime - startTime +"ms");
    }


    public static void test02() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException {
        User user = new User();
        long startTime = System.currentTimeMillis();

        Class c1 = user.getClass();
        Method getName = c1.getDeclaredMethod("getName", null);

        for (int i = 0; i <1000000000 ; i++) {
            getName.invoke(user, null);
        }
        long endTime = System.currentTimeMillis();

        System.out.println(endTime - startTime +"ms");
    }


    public static void test03() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException {
        User user = new User();
        long startTime = System.currentTimeMillis();

        Class c1 = user.getClass();
        Method getName = c1.getDeclaredMethod("getName", null);
        getName.setAccessible(true);

        for (int i = 0; i <1000000000 ; i++) {
            getName.invoke(user, null);
        }
        long endTime = System.currentTimeMillis();

        System.out.println(endTime - startTime +"ms");
    }

    public static void main(String[] args) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException {
        test01();
        test02();
        test03();
    }
}

反射操作注解

public class Test05 {

    public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException {
        Class<?> c1 = Class.forName("reflection.Customer");

        // 通過反射獲取注解
        Annotation[] annotations = c1.getAnnotations();
        for (Annotation annotation:annotations){
            System.out.println(annotation);
        }

        // 獲取注解的值
        TableAnnotation annotation = c1.getAnnotation(TableAnnotation.class);
        System.out.println(annotation.value());

        //獲取類指定注解
        Field id = c1.getDeclaredField("id");
        FiledAnnotation annotation1 = id.getAnnotation(FiledAnnotation.class);
        System.out.println(annotation1.columnName());
        System.out.println(annotation1.length());
        System.out.println(annotation1.type());


    }
}


//類注解
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface TableAnnotation{
    String value();
}


@Data
@TableAnnotation("db_customer")
class Customer {

    @FiledAnnotation(columnName="id",type = "Long",length =10)
    private Long id;

    @FiledAnnotation(columnName="age",type = "int",length =10)
    private int age;

    @FiledAnnotation(columnName="name",type = "String",length =10)
    private String name;


}


//方法注解
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface FiledAnnotation{
    String columnName();

    String type();

    int length();
}

總結(jié)

到此這篇關于java高級用法之注解和反射的文章就介紹到這了,更多相關java注解和反射內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • 在SpringBoot中配置日志級別和輸出格式的教程詳解

    在SpringBoot中配置日志級別和輸出格式的教程詳解

    在開發(fā)一個應用程序時,日志記錄是非常重要的一環(huán),SpringBoot提供了多種日志輸出方式和配置選項,本文將介紹如何在SpringBoot應用程序中配置日志級別和輸出格式,需要的朋友可以參考下
    2023-06-06
  • Java中的Semaphore源碼分析

    Java中的Semaphore源碼分析

    這篇文章主要介紹了Java中的Semaphore源碼分析,Semaphore是一個訪問公共資源的線程數(shù)量如限流、停車等,它是一個基于AQS實現(xiàn)的共享鎖,主要是通過控制state變量來實現(xiàn),需要的朋友可以參考下
    2023-11-11
  • 詳解Spring 參數(shù)驗證@Validated和@Valid的區(qū)別

    詳解Spring 參數(shù)驗證@Validated和@Valid的區(qū)別

    這篇文章主要介紹了詳解參數(shù)驗證 @Validated 和 @Valid 的區(qū)別,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2019-01-01
  • Java手寫一個日志框架的示例代碼

    Java手寫一個日志框架的示例代碼

    日志框架是一種用于記錄和管理應用程序運行時信息的軟件組件,它通常提供了一套API讓開發(fā)人員能夠在代碼中插入日志語句,下面我們就來學習一下如何手寫一個日志框架吧
    2023-12-12
  • java遍歷讀取xml文件內(nèi)容

    java遍歷讀取xml文件內(nèi)容

    這篇文章主要為大家介紹了java遍歷讀取xml文件內(nèi)容,感興趣的小伙伴們可以參考一下
    2016-01-01
  • MyBatis中使用#{}和${}占位符傳遞參數(shù)的各種報錯信息處理方案

    MyBatis中使用#{}和${}占位符傳遞參數(shù)的各種報錯信息處理方案

    這篇文章主要介紹了MyBatis中使用#{}和${}占位符傳遞參數(shù)的各種報錯信息處理方案,分別介紹了兩種占位符的區(qū)別,本文給大家介紹的非常詳細,需要的朋友可以參考下
    2024-01-01
  • springboot配置flyway(入門級別教程)

    springboot配置flyway(入門級別教程)

    本文介紹了springboot配置flyway,主要介紹基于SpringBoot集成flyway來管理數(shù)據(jù)庫的變更,具有一定的參考價值,感興趣的可以了解一下
    2023-09-09
  • springboot開啟mybatis二級緩存的步驟詳解

    springboot開啟mybatis二級緩存的步驟詳解

    這篇文章給大家介紹了springboot開啟mybatis二級緩存的詳細步驟,文中通過代碼示例給大家講解的非常詳細,對大家的學習或工作有一定的幫助,需要的朋友可以參考下
    2024-02-02
  • Spring Boot 整合mybatis 使用多數(shù)據(jù)源的實現(xiàn)方法

    Spring Boot 整合mybatis 使用多數(shù)據(jù)源的實現(xiàn)方法

    這篇文章主要介紹了Spring Boot 整合mybatis 使用多數(shù)據(jù)源的實現(xiàn)方法,需要的朋友可以參考下
    2018-03-03
  • Java中Object類的理解和使用

    Java中Object類的理解和使用

    Object類是java.lang包下的核心類,Object類是所有類的父類,何一個類時候如果沒有明確的繼承一個父類的話,那么它就是Object的子類,本文將通過代碼示例詳細介紹一下Java中Object類的理解和使用,需要的朋友可以參考下
    2023-06-06

最新評論