本帖最后由 宋美成 于 2014-5-19 18:45 编辑
已哭瞎,不知道错在哪里,看图片吧,求指导
该导入的包我也导入了啊,为啥会爆出那个没有定义的方法那个错误呢
代码为:
- class Apple
- {
-
- }
- public class Excercise
- {
- public static void main(String[] args)throws Exception
- {
- Class clazzApple=Apple.class;
- Constructor con=clazzApple.getConstructor();
- //建立对象:
- Object obj=con.newInstance();
- System.out.println(obj);
- }
复制代码
|
|