Java中怎么利用注解和反射简化编程
Java中怎么利用注解和反射简化编程,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
成都创新互联是专业的醴陵网站建设公司,醴陵接单;提供成都网站设计、成都做网站、外贸网站建设,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行醴陵网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!
一 点睛
当调用大量方法,可以使用反射和注解简化编程。
二 代码
import java.lang.annotation.Annotation;import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target;import java.lang.reflect.Method;import java.util.ArrayList;@Documented@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.METHOD)@interface testAnnoation10 { public String name() default "methodname"; public String unit() default "unit";}public class ch21_10 { public static void main( String[] args ) throws Exception { ch21_10 ch9 = new ch21_10(); Method method[] = ch9.getClass().getMethods(); for (Method method2 : method) { Annotation annotation = method2.getAnnotation(testAnnoation10.class); Class> ts[] = method2.getParameterTypes(); if (method2.getName().indexOf("getData") == -1) continue; ArrayList
三 运行
Tempreture is 20 AFElectricity is 100 AhSOC is 10 %
关于Java中怎么利用注解和反射简化编程问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
当前标题:Java中怎么利用注解和反射简化编程
标题URL:http://pwwzsj.com/article/iiogeh.html