博客
关于我
java 注解——Annotations Basics
阅读量:302 次
发布时间:2019-03-03

本文共 1957 字,大约阅读时间需要 6 分钟。

// 注解的格式

The Format of an Annotation

// 一个简单的注解如下所示

In its simplest form, an annotation looks like the following:

@Entity

// @这个标识符告诉编辑器这是一个注解,下面以重写(Override)这个注解为例

The at sign character (@) indicates to the compiler that what follows is an annotation. In the following example, the annotation's name is Override:

@Overridevoid mySuperMethod() { ... }

// 注解可以包括属性(elements),这些属性可以是已命名的也可以的未命名的,而且他们可以有自己的属性值(values

The annotation can include elements, which can be named or unnamed, and there are values for those elements:

@Author(   name = "Benjamin Franklin",   date = "3/27/2003")class MyClass() { ... }

or

@SuppressWarnings(value = "unchecked")void myMethod() { ... }

// 如果注解只有一个属性,而且属性名为value,那么属性名可以省略,正像下面这个例子展示的那样

If there is just one element named value, then the name can be omitted, as in:

@SuppressWarnings("unchecked")void myMethod() { ... }

//  如果注解没有属性,那么括号也可以省略,比如前面@Override的例子

If the annotation has no elements, then the parentheses can be omitted, as shown in the previous @Override example.

// 同一个位置可以使用多个注解

It is also possible to use multiple annotations on the same declaration:

@Author(name = "Jane Doe")@EBookclass MyClass { ... }

// 如果是多个同类注解,这种情况被称作多重注解

If the annotations have the same type, then this is called a repeating annotation:

@Author(name = "Jane Doe")@Author(name = "John Smith")class MyClass { ... }

// Java SE 8 release 开始支持多重注解,想了解更多,请点击链接

Repeating annotations are supported as of the Java SE 8 release. For more information, see .

// 注解可以是Java SE API里面java.lang或者java.lang.annotation这些包里面已经定义的类型,比如前面提到的Override和SuppressWarnings都是

// java预定义注解。也可以是自定义类型,前面例子展示的Author和Ebook都是这一类。

The annotation type can be one of the types that are defined in the java.lang or java.lang.annotation packages of the Java SE API. In the previous examples,Override and SuppressWarnings are . It is also possible to define your own annotation type. The Author and Ebook annotations in the previous example are custom annotation types.

转载地址:http://mdtm.baihongyu.com/

你可能感兴趣的文章
mysql 更新子表_mysql 在update中实现子查询的方式
查看>>
MySQL 有什么优点?
查看>>
mysql 权限整理记录
查看>>
mysql 权限登录问题:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)
查看>>
MYSQL 查看最大连接数和修改最大连接数
查看>>
MySQL 查看有哪些表
查看>>
mysql 查看锁_阿里/美团/字节面试官必问的Mysql锁机制,你真的明白吗
查看>>
MySql 查询以逗号分隔的字符串的方法(正则)
查看>>
MySQL 查询优化:提速查询效率的13大秘籍(避免使用SELECT 、分页查询的优化、合理使用连接、子查询的优化)(上)
查看>>
mysql 查询数据库所有表的字段信息
查看>>
【Java基础】什么是面向对象?
查看>>
mysql 查询,正数降序排序,负数升序排序
查看>>
MySQL 树形结构 根据指定节点 获取其下属的所有子节点(包含路径上的枝干节点和叶子节点)...
查看>>
mysql 死锁 Deadlock found when trying to get lock; try restarting transaction
查看>>
mysql 死锁(先delete 后insert)日志分析
查看>>
MySQL 死锁了,怎么办?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 深度分页性能急剧下降,该如何优化?
查看>>
MySQL 添加列,修改列,删除列
查看>>
mysql 添加索引
查看>>