本帖最后由 在学野马 于 2014-10-5 17:22 编辑
- public class fanshe {
- /**
- * @param args
- * @throws Exception
- */
- public static void main(String[] args) throws Exception {
- // TODO Auto-generated method stub
- Class clazz=Class.forName("lianxi.printstr");
- // Constructor[] con=clazz.getConstructors();
- Constructor con=clazz.getConstructor(String.class);
- Method method=clazz.getMethod("print");
- // Object obj=con.newInstance(new String("asd"));
- Object obj=con.newInstance("asd");
- method.invoke(“printstr”,obj); //为什么这里加上对象就出错了
复制代码
|