public void printStr(){
System.out.println(str);
}
}
红色的那段代码出错 ,提示的是The method newInstancce(String) is undefined for the type Constructer ,我看了半天也没改过来 哪位同学指点下!作者: 柳 德 彬 时间: 2013-4-11 19:52
你看看这样行不?!
public class Test {
public static <Constructer> void main(String[] args) throws Exception {
// String TestClass = null;
Constructer con = (Constructer) Class.forName("TestClass").getConstructor(String.class).newInstance(new Object[]{""});