学习(二)(@NonNull的作用)

@NonNull的作用:
@NonNull
AndroidSourceSet java(Closure configureClosure);
/**
 * Denotes that a parameter, field or method return value can never be null.
 *


 * This is a marker annotation and it has no specific attributes.
 */


//解释:指明一个参数,字段或者方法的返回值不可以为null;

//这是一个动画标记,没有特定的属性值;

//即,如果本地一个变量值为空(例如,前面的代码检测此变量是否为空),然后你传递一个null的

//变量到一个被@NonNull修饰(标记)的参数的方法中时,开发工具IDE会警告程序可能会有崩溃的风险。

//这个是一个静态的分析方法,运行时不报任何警告。

import android.support.annotation.NonNull;

public @interface NonNull {}

你可能感兴趣的:(学习(二)(@NonNull的作用))