日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務,提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

JAVA里有個神奇的存在,注解,就是那個天天@別人的家伙,它到底是何方神圣???

請先給二當家的來個一鍵三連,然后接著耐心地讀下去吧,多謝。

什么是注解

從JDK5開始,Java增加對元數(shù)據(jù)的支持,也就是注解,注解與注釋是有一定區(qū)別的,可以把注解理解為代碼里的特殊標記,這些標記可以在編譯,類加載,運行時被讀取,并執(zhí)行相應的處理。通過注解開發(fā)人員可以在不改變原有代碼和邏輯的情況下在源代碼中嵌入補充信息。

內(nèi)置的注解

二當家的發(fā)現(xiàn)在 IDE 中如果創(chuàng)建一個類并實現(xiàn)一個接口之后,那些實現(xiàn)接口的方法上面會自動幫我添加 @Override 的標記。

而這個標記就是注解,像@Override這樣JDK內(nèi)置的注解還有好幾個呢,他們都在java.lang包下面,我們分別看看。

@Override

當子類重寫父類方法時,子類可以加上這個注解,那這有什么什么用?這可以確保子類確實重寫了父類的方法,避免出現(xiàn)低級錯誤。


 

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 


 

開始不知道有什么用,直到有一天,我把接口里的這個方法刪除了,結果就編譯不通過了。


 

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 


下面是直接在命令行編譯的結果。這回我知道這個標記的作用了,它可以告訴編譯器和閱讀源碼的人這個方法是覆蓋或實現(xiàn)超類型的方法。
 

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

@Deprecated

這個注解用于表示某個程序元素類,方法等已過時,當其他程序使用已過時的類,方法時編譯器會給出警告(刪除線,這個見了不少了吧)。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

@SuppressWarnings
抑制警告。

package com.secondgod.annotation;

import java.util.ArrayList;
import java.util.List;

public class Test {

    public static void main(String[] args) {
        List<Integer> intList = new ArrayList<>();
        List          objList = intList;
        objList.add("二當家的");
    }
}

在命令行啟用建議警告的編譯(命令形如 javac -d . -Xlint Test.java ,下文再提到啟用建議警告的編譯,不再贅述解釋)。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

代碼稍作修改,則可以消除編譯警告。

package com.secondgod.annotation;

import java.util.ArrayList;
import java.util.List;

public class Test {

    @SuppressWarnings({"unchecked", "rawtypes"})
    public static void main(String[] args) {
        List<Integer> intList = new ArrayList<>();
        List          objList = intList;
        objList.add("二當家的");
    }
}

@SafeVarargs

在聲明具有模糊類型(比如:泛型)的可變參數(shù)的構造函數(shù)或方法時,Java編譯器會報unchecked警告。鑒于這些情況,如果程序員斷定聲明的構造函數(shù)和方法的主體不會對其varargs參數(shù)執(zhí)行潛在的不安全的操作,可使用@SafeVarargs進行標記,這樣的話,Java編譯器就不會報unchecked警告。

package com.secondgod.annotation;

import java.util.List;

public class Test {
    public final void test(List<String>... stringLists) {

    }
}

在命令行啟用建議警告的編譯。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

代碼稍作修改,則可以消除編譯警告。

package com.secondgod.annotation;

import java.util.List;

public class Test {
    @SafeVarargs
    public final void test(List<String>... stringLists) {

    }
}

@FunctionalInterface

函數(shù)式接口注解,這個是 Java 1.8 版本引入的新特性。函數(shù)式編程很火,所以 Java 8 也及時添加了這個特性。
這個注解有什么用?這個注解保證這個接口只有一個抽象方法,注意這個只能修飾接口。

沒有抽象方法的接口

package com.secondgod.annotation;

@FunctionalInterface
public interface Test {

}

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

有超過一個抽象方法的接口

package com.secondgod.annotation;

@FunctionalInterface
public interface Test {
    String test1();

    String test2();
原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

只有一個抽象方法的接口
編譯通過。

package com.secondgod.annotation;

@FunctionalInterface
public interface Test {
    String test();

只有一個抽象方法的抽象類

package com.secondgod.annotation;

@FunctionalInterface
public abstract class Test {
    public abstract String test();
}

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

元注解

我們打開@Override的源碼看下,會發(fā)現(xiàn)這個注解的定義上本身還有注解,即注解的注解,人們通常叫他們元注解。元注解是負責對其它注解進行說明的注解,自定義注解時可以使用元注解。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

JDK內(nèi)置的元注解都在java.lang.annotation包下面。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 


@Target
Target 是目標的意思,@Target 指定了注解運用的地方。
 

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

@Documented

用 @Documented 注解修飾的注解類會被 JavaDoc 工具提取成文檔。默認情況下,JavaDoc 是不包括注解的,但如果聲明注解時指定了 @Documented,就會被 JavaDoc 之類的工具處理,所以注解類型信息就會被包括在生成的幫助文檔中。

@Inherited

Inherited 是繼承的意思,但是它并不是說注解本身可以繼承,而是說如果一個超類被 @Inherited 注解過的注解進行注解的話,那么如果它的子類沒有被任何注解應用的話,那么這個子類就繼承了超類的注解。

@Repeatable

Repeatable 自然是可重復的意思。Java 8 新增加的,它允許在相同的程序元素中重復注解,在需要對同一種注解多次使用時,往往需要借助 @Repeatable 注解。Java 8 版本以前,同一個程序元素前最多只能有一個相同類型的注解,如果需要在同一個元素前使用多個相同類型的注解,則必須使用注解“容器”。

@Retention

@Retention 用于描述注解的生命周期,也就是該注解被保留的時間長短。@Retention 注解中的成員變量(value)用來設置保留策略,value 是
java.lang.annotation.RetentionPolicy 枚舉類型,RetentionPolicy 有 3 個枚舉常量,如下所示。


 

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

@Native

使用 @Native 注解修飾成員變量,則表示這個變量可以被本地代碼引用,常常被代碼生成工具使用。他也在java.lang.annotation包下面,但是我認為他不算是元注解,因為他的使用目標不是注解。

原來 Java 注解只是個標記,沒什么本領,一文精通,值得收藏

 

自定義注解

在Spring,Hibernate,Mybatis等框架下都有注解,二當家的也嘗試自定義一個注解,先看下@Override的源碼吧。

package java.lang;

import java.lang.annotation.*;

/**
 * Indicates that a method declaration is intended to override a
 * method declaration in a supertype. If a method is annotated with
 * this annotation type compilers are required to generate an error
 * message unless at least one of the following conditions hold:
 *
 * <ul><li>
 * The method does override or implement a method declared in a
 * supertype.
 * </li><li>
 * The method has a signature that is override-equivalent to that of
 * any public method declared in {@linkplain Object}.
 * </li></ul>
 *
 * @author  Peter von der Ahé
 * @author  Joshua Bloch
 * @jls 9.6.1.4 @Override
 * @since 1.5
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
public @interface Override {
}

我們照葫蘆畫瓢也自定義一個。

package com.secondgod.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 測試注解
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}

我們自定義的注解通常都是定義生命周期為 RUNTIME 的。生命周期為 SOURCE 的,需要編譯器的配合。生命周期為 CLASS 的,需要虛擬機的配合。只有程序運行時的行為是我們可以自定義的。

好了,去使用一下這個自定義的注解。

package com.secondgod.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


/**
 * 測試注解
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
}

/**
 * 對自定義注解的測試
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class Test {
    @MyAnnotation
    private String name;
}

有的注解還帶參數(shù),二當家的也加上。

package com.secondgod.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


/**
 * 測試注解
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
    String name();
}

/**
 * 對自定義注解的測試
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class Test {
    @MyAnnotation(name = "二當家的")
    private String name;
}

使用時候賦值必須寫屬性名,像@Target等一些注解賦值的時候就不用寫屬性名,那是因為屬性名是“value”,就可以不用寫。

package com.secondgod.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


/**
 * 測試注解
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
    String value();
}

/**
 * 對自定義注解的測試
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class Test {
    @MyAnnotation("二當家的")
    private String name;
}

在注解里定義了屬性后,使用的地方必須賦值。 不過可以在注解里定義默認值,使用時就可以不賦值了。

package com.secondgod.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


/**
 * 測試注解
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
    String value() default "二當家的";
}

/**
 * 對自定義注解的測試
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class Test {
    @MyAnnotation
    private String name;
}

注解里的內(nèi)容非常的少,顯然他的功能并不在里面實現(xiàn)。所以注解就是個標記,本身并沒有任何功能。那他的功能如何實現(xiàn)呢?

注解實戰(zhàn)

我們用反射和內(nèi)省配合注解來實現(xiàn)一個小工具,可以自動用環(huán)境變量初始化屬性。

package com.secondgod.annotation;

import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;

/**
 * 工具類
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class MyUtils {
    /**
     * 私有構造,不可實例化
     */
    private MyUtils() {}

    /**
     * 用于對屬性按照環(huán)境變量默認初始化
     */
    @Target(ElementType.FIELD)
    @Retention(RetentionPolicy.RUNTIME)
    @interface EnvironmentVariables {
        /**
         * 環(huán)境變量的key
         * @return
         */
        String value();
    }

    /**
     * 取得類實例,并用環(huán)境變量初始化
     *
     * @param clazz
     * @param <T>
     * @return
     * @throws InstantiationException
     * @throws IllegalAccessException
     * @throws java.beans.IntrospectionException
     * @throws InvocationTargetException
     */
    public static <T> T getInstance(Class<T> clazz) throws InstantiationException, IllegalAccessException, IntrospectionException, InvocationTargetException {
        T obj = clazz.newInstance();
        setEnvironmentVariables(obj);
        return obj;
    }

    /**
     * 為對象屬性按照環(huán)境變量賦值
     *
     * @param o
     * @throws IllegalAccessException
     */
    public static void setEnvironmentVariables(Object o) throws IllegalAccessException, IntrospectionException, InvocationTargetException {
        for (Field f : o.getClass().getDeclaredFields()) {
            // 利用反射讀取注解
            EnvironmentVariables environmentVariables = f.getDeclaredAnnotation(EnvironmentVariables.class);
            if (environmentVariables != null) {
                // 如果注解存在就讀取環(huán)境變量
                String value = System.getProperty(environmentVariables.value());
                // 利用內(nèi)省將值寫入
                PropertyDescriptor pd = new PropertyDescriptor(f.getName(), o.getClass());
                pd.getWriteMethod().invoke(o, value);
            }
        }
    }
}

我們定義一個類用來表示虛擬機的信息,并且用注解標注屬性字段。

package com.secondgod.annotation;

import java.text.MessageFormat;

/**
 * 虛擬機信息
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class VmInfo {
    @MyUtils.EnvironmentVariables(value = "java.vm.version")
    private String version;
    @MyUtils.EnvironmentVariables(value = "java.vm.vendor")
    private String vendor;
    @MyUtils.EnvironmentVariables(value = "java.vm.name")
    private String name;
    @MyUtils.EnvironmentVariables(value = "java.vm.specification.name")
    private String specName;
    @MyUtils.EnvironmentVariables(value = "java.vm.specification.vendor")
    private String specVendor;
    @MyUtils.EnvironmentVariables(value = "java.vm.specification.version")
    private String specVersion;
    @MyUtils.EnvironmentVariables(value = "java.vm.info")
    private String info;

    public String getVersion() {
        return version;
    }

    public void setVersion(String version) {
        this.version = version;
    }

    public String getVendor() {
        return vendor;
    }

    public void setVendor(String vendor) {
        this.vendor = vendor;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getSpecName() {
        return specName;
    }

    public void setSpecName(String specName) {
        this.specName = specName;
    }

    public String getSpecVendor() {
        return specVendor;
    }

    public void setSpecVendor(String specVendor) {
        this.specVendor = specVendor;
    }

    public String getSpecVersion() {
        return specVersion;
    }

    public void setSpecVersion(String specVersion) {
        this.specVersion = specVersion;
    }

    public String getInfo() {
        return info;
    }

    public void setInfo(String info) {
        this.info = info;
    }

    public String toString() {
        return MessageFormat.format("version={0},vendor={1},name={2},specName={3},specVendor={4},specVersion={5},info={6}", version, vendor, name, specName, specVendor, specVendor, info);
    }
}

好了,來測試一下我們的工具吧。

package com.secondgod.annotation;

import java.beans.IntrospectionException;
import java.lang.reflect.InvocationTargetException;

/**
 * 對自定義注解的測試
 *
 * @author 二當家的白帽子 https://le-yi.blog.csdn.net/
 */
public class Test {

    public static void main(String[] args) throws IntrospectionException, InvocationTargetException, IllegalAccessException, InstantiationException {
        VmInfo info1 = new VmInfo();
        System.out.println("普通方式實例化后:" + info1);
        VmInfo info2 = MyUtils.getInstance(VmInfo.class);
        System.out.println("使用我們的小工具實例化后:" + info2);
    }
}

內(nèi)容比較多,圖沒有截全,但是很明顯可以看出我們的小工具符合我們的預期想法,很Nice。

尾聲

在Spring,Hibernate,Mybatis等框架中都有自定義注解,常常用來作為除配置文件之外的另一種配置選擇。他們各有利弊,應該根據(jù)實際情況選擇。配置文件修改重啟程序即可,而注解修改顯然只能重新編譯。但是二當家的覺得配置直接放在使用的地方非常方便,可讀性也更好,所以除非是有發(fā)布后修改的需求,否則二當家都喜歡用注解。不過用注解就會比較分散,不如配置文件集中。哎,大家仁者見仁,智者見智吧。
日更不易記得點個關注@Java學長支持一下小編哦

原文
:https://blog.csdn.net/leyi520/article/details/118994416?spm=1001.2014.3001.5501

分享到:
標簽:注解 Java
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定