@documented,DocumentEditjsp ie11缺少对象

http://www.itjxue.com  2023-01-14 08:04  来源:未知  点击次数: 

@documented 什么意思

@Documented 将此注解包含在 javadoc 中 ,它代表着此注解会被javadoc工具提取成文档。在doc文档中的内容会因为此注解的信息内容不同而不同。

document是什么意思

一、document的意思是:

1、n.公文;(计算机)文档,证件

This?document?was?pigeonholed?for?quite?some?time.

这份公文压了不少时间。

2、vt.记录;证明;为…提供证明

The?films?document?the?development?of?the?railways.

这些电影记录了铁路的发展。

二、document的音标:英 [?d?kjum?nt]? ?美 [?dɑ:kjum?nt]

三、词源解说:

15世纪中期进入英语,直接源自中古法语的document,意为课文,书面证据;最初源自古典拉丁语的documentum,意为例子,证明。

四、经典引文:

Our great documents, from the Declaration of Independence to the Atlantic Charter.

我们的伟大文件,从《独立宣言》到《大西洋宪章》。

出自: A. E. Stevenson

扩展资料:

一、词语用法:

v. (动词)

1、document的基本意思是“证明”,指提供一种可以作为资料来源、权利证据、要求和竞争的根据,对所有者和其他人都有价值的文件或契约的说明,引申可表示“记录”“记载”。

2、document只用作及物动词,接名词或代词作宾语,可用于被动结构。

二、词汇搭配:

1、capture documents 缴获文件

2、prepare document 制定文件

3、witness a document 在文件上签名作证

4、confidential document 机密文件

5、legal documents 法律文件

java注解设置字段不能为零

不能为零。

java自定义注解,元注解的使用 ,元注用于注解注解的注解,元注解共有4个:第一个是@target,用于明确注解用于目标类的哪个位置,elementtype枚举类的值,type用于注解类,fields用于注解属性,methods用于注解方法,parameter用于注解参数@retention用于标识自定义注解的声明周期retentionpolicy枚举类的值,source,没有被编译器编译class不会在运行时,被jvm保留runtime,生命周期持续到运行时,能够通过反射获取到@documented用于标识自定义注解能够使用javadoc命令生成关于注解的文档,@inherited用于标识使用注解的类被继承时,同样能够继承此自定义注解,也就是相当于子类也使用了此自定义注解。

java怎么查看annotation 实现

深入理解Java:注解(Annotation)自定义注解入门

要深入学习注解,我们就必须能定义自己的注解,并使用注解,在定义自己的注解之前,我们就必须要了解Java为我们提供的元注解和相关定义注解的语法。

元注解:

元注解的作用就是负责注解其他注解。Java5.0定义了4个标准的meta-annotation类型,它们被用来提供对其它 annotation类型作说明。Java5.0定义的元注解:

1.@Target,

2.@Retention,

3.@Documented,

4.@Inherited

这些类型和它们所支持的类在java.lang.annotation包中可以找到。下面我们看一下每个元注解的作用和相应分参数的使用说明。

@Target:

 @Target说明了Annotation所修饰的对象范围:Annotation可被用于 packages、types(类、接口、枚举、Annotation类型)、类型成员(方法、构造方法、成员变量、枚举值)、方法参数和本地变量(如循环变量、catch参数)。在Annotation类型的声明中使用了target可更加明晰其修饰的目标。

作用:用于描述注解的使用范围(即:被描述的注解可以用在什么地方)

取值(ElementType)有:

1.CONSTRUCTOR:用于描述构造器

2.FIELD:用于描述域

3.LOCAL_VARIABLE:用于描述局部变量

4.METHOD:用于描述方法

5.PACKAGE:用于描述包

6.PARAMETER:用于描述参数

7.TYPE:用于描述类、接口(包括注解类型) 或enum声明

使用实例:

@Target(ElementType.TYPE)

public @interface Table {

/**

* 数据表名称注解,默认值为类名称

* @return

*/

public String tableName() default "className";

}

@Target(ElementType.FIELD)

public @interface NoDBColumn {

}

注解Table 可以用于注解类、接口(包括注解类型) 或enum声明,而注解NoDBColumn仅可用于注解类的成员变量。

@Retention:

@Retention定义了该Annotation被保留的时间长短:某些Annotation仅出现在源代码中,而被编译器丢弃;而另一些却被编译在class文件中;编译在class文件中的Annotation可能会被虚拟机忽略,而另一些在class被装载时将被读取(请注意并不影响class的执行,因为Annotation与class在使用上是被分离的)。使用这个meta-Annotation可以对 Annotation的“生命周期”限制。

作用:表示需要在什么级别保存该注释信息,用于描述注解的生命周期(即:被描述的注解在什么范围内有效)

取值(RetentionPoicy)有:

1.SOURCE:在源文件中有效(即源文件保留)

2.CLASS:在class文件中有效(即class保留)

3.RUNTIME:在运行时有效(即运行时保留)

Retention meta-annotation类型有唯一的value作为成员,它的取值来自java.lang.annotation.RetentionPolicy的枚举类型值。具体实例如下:

@Target(ElementType.FIELD)

@Retention(RetentionPolicy.RUNTIME)

public @interface Column {

public String name() default "fieldName";

public String setFuncName() default "setField";

public String getFuncName() default "getField";

public boolean defaultDBValue() default false;

}

Column注解的的RetentionPolicy的属性值是RUTIME,这样注解处理器可以通过反射,获取到该注解的属性值,从而去做一些运行时的逻辑处理

@Documented:

@Documented用于描述其它类型的annotation应该被作为被标注的程序成员的公共API,因此可以被例如javadoc此类的工具文档化。Documented是一个标记注解,没有成员。

@Target(ElementType.FIELD)

@Retention(RetentionPolicy.RUNTIME)

@Documented

public @interface Column {

public String name() default "fieldName";

public String setFuncName() default "setField";

public String getFuncName() default "getField";

public boolean defaultDBValue() default false;

}

@Inherited:

@Inherited 元注解是一个标记注解,@Inherited阐述了某个被标注的类型是被继承的。如果一个使用了@Inherited修饰的annotation类型被用于一个class,则这个annotation将被用于该class的子类。

注意:@Inherited annotation类型是被标注过的class的子类所继承。类并不从它所实现的接口继承annotation,方法并不从它所重载的方法继承annotation。

当@Inherited annotation类型标注的annotation的Retention是RetentionPolicy.RUNTIME,则反射API增强了这种继承性。如果我们使用java.lang.reflect去查询一个@Inherited annotation类型的annotation时,反射代码检查将展开工作:检查class和其父类,直到发现指定的annotation类型被发现,或者到达类继承结构的顶层。

(责任编辑:IT教学网)

更多