标签:
Java的annotation和C#的Attribute,可用来为语言增加语义,定义元数据。
转自:http://rednaxelafx.iteye.com/blog/464889
http://blog.sina.com.cn/s/blog_69a4df530100p8w3.html
Assembly | Attribute can be applied to an assembly. |
Module | Attribute can be applied to a module. |
Class | Attribute can be applied to a class. |
Struct | Attribute can be applied to a structure; that is, a value type. |
Enum | Attribute can be applied to an enumeration. |
Constructor | Attribute can be applied to a constructor. |
Method | Attribute can be applied to a method. |
Property | Attribute can be applied to a property. |
Field | Attribute can be applied to a field. |
Event | Attribute can be applied to an event. |
Interface | Attribute can be applied to an interface. |
Parameter | Attribute can be applied to a parameter. |
Delegate | Attribute can be applied to a delegate. |
ReturnValue | Attribute can be applied to a return value. |
GenericParameter | Attribute can be applied to a generic parameter. |
All | Attribute can be applied to any application element. |
ANNOTATION_TYPE | Annotation type declaration |
CONSTRUCTOR | Constructor declaration |
FIELD | Field declaration (includes enum constants) |
LOCAL_VARIABLE | Local variable declaration |
METHOD | Method declaration |
PACKAGE | Package declaration |
PARAMETER | Parameter declaration |
TYPE | Class, interface (including annotation type), or enum declaration |
Java自定义注解小结
作者:谢伟伦
学习java有两年之余了,在很久之前,已经有位系统分析师告诉我,学习java,看java编程思想就够了。其言下之意,就是说,任何一切java框架,都是浮云,只有精通核心java,才是王道!
现在回想起来,这句话真的十分正确,一年多的工作,都只徘徊于学习java框架,造成自己是一个只会使用,不能原理的人。
趁着现在工作不忙,静下心来,好好学习一下核心java的基础。
今天早上,学习了java注解,这家伙以前经常用,但就是不知道其实现过程是如何,现在总算有所体会。
在一个java Project里,新建了三个类,其中有一个是java注解类,它们的源码如下:
package comm.annotation.test;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Description {
String author() default "william"; //定义"作者"参数
int size(); //定义"大小"参数
}
package comm.annotation.test;
@Description(author="helloworld",size=200)
public class DescriptionTest {
@SuppressWarnings(value="unchecked")
public static void main(String[] args) {
Class clazz = DescriptionTest.class;
if(clazz.isAnnotationPresent(Description.class)){
Description desc = (Description)clazz.getAnnotation(Description.class);
System.out.println("desc.author:" + desc.author());
System.out.println("desc.size:" + desc.size());
}else{
System.out.println("没有在DescriptionTest上使用注解!");
}
}
}
package comm.annotation.test;
public class SubDescriptionTest extends DescriptionTest{
@SuppressWarnings(value="unchecked")
public static void main(String[] args) {
Class clazz = DescriptionTest.class;
if(clazz.isAnnotationPresent(Description.class)){
Description desc = (Description)clazz.getAnnotation(Description.class);
System.out.println("desc.author:" + desc.author());
System.out.println("desc.size:" + desc.size());
}else{
System.out.println("没有在subDescriptionTest上使用注解!");
}
}
}
运行DescirptionTest和SubDescriptionTest两个java class,其输出的结果如下:
desc.author:helloworld
desc.size:200
我想说有三点:
(1) java annotation的基础语法
(2) java annotation的继承
(3) 关于对基于annotation框架的思考
第一点, 在源码里面,都说得十分简明了。更详尽的信息,请google一下。
第二点, 想的话就是“annotation与annotation之间没有继承关系”,只能用在类或接口里,由于在annotation类Description里面增加了@Inherited,因此,SubDescriptionTest直接拥有DescriptionTest其注解。
第三点, 在我古老的做法里,都用xml配置文件来让框架加载信息的,现在人们已经慢慢转向基于annotation方式来开发项目了,个人认为,利用java反射api,从注解处获得足够信息后,即可生成对象,与基于xml的配置效果是一样的。
接下来的时间,希望学习泛型这家伙,不能只看到外皮了。
标签:
原文地址:http://www.cnblogs.com/cheng2015/p/5283868.html