|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
在运行后会报错,显示Class c = Class.forName("Example");错误,不知道原因出在哪了,求大佬帮忙看看
package ssr;
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
public class Demo25 {
public static void main(String[] args) {
try {
Class c = Class.forName("Example");
Constructor cons[] = c.getConstructors();
for(Constructor con : cons) {
System.out.println(Modifier.toString(con.getModifiers()));
}
} catch (ClassNotFoundException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
}
package ssr;
public class Example {
int i;
String name;
double price;
public Example() {
super();
}
public Example(int i) {
super();
this.i = i;
}
/**
* @param i
* @param name
* @param price
*/
private Example(int i, String name, double price) {
super();
this.i = i;
this.name = name;
this.price = price;
}
}
Class.forName("全限定类名")
Class.forName("ssr.Example")
|
|