标签: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"); //调用方法
标签:art 反射 out 调用 print this eth get 注解
原文地址:https://www.cnblogs.com/subtract/p/8989385.html