一个关于Class类的小小疑惑
class Rect { double width,height,area;
public double getArea()
{ area=height*width;
return area;
}
}
public class Boy
{ public static void main(String args[])
{ try{ Class cs=Class.forName("Rect");
Rect rect=(Rect)cs.newInstance();
rect.width=100;
rect.height=200;
System.out.println("rect的面积"+rect.getArea());
}
catch(Exception e){}
}
}
此程序运行没有结果 求解释?? eclipse坏境中