美文网首页
@interface

@interface

作者: 随风而逝1027 | 来源:发表于2017-03-31 11:59 被阅读0次

深入理解Java:注解(Annotation)自定义注解入门
http://www.cnblogs.com/peida/archive/2013/04/24/3036689.html

@interface 批注 用来规范代码,避免一些人为的失误

元注解: 注解的注解

@Target 说明annotation修饰的对象范围,可被用于packages,types(类,接口,枚举,Annotation类型),类型成员,方法变量和本地变量

@Rentention

定义注解被保留的时间长短

1.source 在源文件中有效

2.class 在class文件中有效

3.Runtime在运行时有效

@Documented

@Inherited

相关文章

  • interface{} 与 []interface{}

    简介 基于可以对interface{}赋值任何类型的变量,很多人会尝试如下的代码: 很不幸会导致错误: 于是问题来...

  • Interface

    Interface is a group of method signatures, continuin with...

  • Interface

    为什么interface中的变量都是static public final? 首先接口是一种高度抽象的"模版",,...

  • interface

    接口用于定义对象的 '轮廓' 但是如果我们直接传入一个对象字面量进去,ts就会报错, 因为ts对对象字面量检测更加...

  • interface

    http://blog.csdn.net/justaipanda/article/details/43155949...

  • @interface

    深入理解Java:注解(Annotation)自定义注解入门http://www.cnblogs.com/peid...

  • Interface

    4.1 Comma Separated Value. *Comma Separated Value *or CSV...

  • interface

    由于基础很差不太明白interface到底是个啥接口上我一直不太理解,插上就通电了......通电什么意思 插曲最...

  • interface

    java语言里面使用interface来声明一个接口,接口其实是一个特殊的抽象类,在接口里面的方法全部都是抽象的。...

  • @Interface

    1.@Retention:RetentionPolicy.SOURCE:检查,源文件存在,编译丢失Retentio...

网友评论

      本文标题:@interface

      本文链接:https://www.haomeiwen.com/subject/xdzmottx.html