(反射与Annotation)自定义Annotation

自定义Annotation

java中提供有新的语法,使用“@interface”来定义Annotation。

范例:自定义Annotation

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.reflect.Method;

public class AnnotationDemo{
    public static void main(String[] args) throws Exception {
       Method method =  Message.class.getMethod("send",String.class);   //获取指定方法
        DefaultAnnotation defaultAnnotation = method.getAnnotation(DefaultAnnotation.class);  //获取指定的Annotation
        String str = defaultAnnotation.title() + "url:("+defaultAnnotation.url()+")";   //字符串组合
        method.invoke(Message.class.getDeclaredConstructor().newInstance(),str);    //调用send方法填入参数
    }
}

@Retention(RetentionPolicy.RUNTIME) //定义Annotation运行时的策略
@interface DefaultAnnotation{   //自定义的Annotation
    public String title();//获取数据
    public String url() default "www.baidu.com" ;//获取数据,默认值
}

class Message{
    @DefaultAnnotation(title  = "百度")
    public void send(String msg){
        System.out.println("消息发送:"+msg);
    }
}

消息发送:百度url:(www.baidu.com)

使用Annotation的最大特点是可以结合反射机制实现程序的处理。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值