首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

java 引语代码

2012-11-12 
java 注解代码package com.endual.annotationimport java.lang.annotation.Annotationimport java.lang.

java 注解代码

package com.endual.annotation;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;

public class MyRefection {
??
??? public static void main(String args[]) throws SecurityException, Exception{
??? ??? Class<HelloM> c = HelloM.class;
??? ??? HelloM m = new HelloM();
??? Method method = c.getMethod("sayHello", new Class[]{});
???
??? if(method.isAnnotationPresent(MyAnnotation.class)){
??? ??? method.invoke(m, new Object[]{});
??? ??? MyAnnotation annotation = method.getAnnotation(MyAnnotation.class);
??? ???
???????? String hello1 = annotation.value();
//?????? String hello = annotation.annotationType().getName();
//??????
?????? System.out.print(hello1);
??? }
? }
}

热点排行