码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA 注解和反射

时间:2018-05-04 11:52:11      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:art   反射   out   调用   print   this   eth   get   注解   

通过反射来获取类

Class MyTest{
    private String name;
    public String showName{
        System.out.println(this.name);
    }
}
Class myClass = Class.forName("MyTest");    //代替JVM引入MyTest类
Method myMethod = myClass.getDeclaredMethod("showName", String.class);  //获取方法
Object myObj = myClass.newInstance(); //实例化类
myMethod.invoke(myObj,"smartom");     //调用方法

JAVA 注解和反射

标签:art   反射   out   调用   print   this   eth   get   注解   

原文地址:https://www.cnblogs.com/subtract/p/8989385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!