super(height);
<FONT color=red>//因为父类的空参数构造函数已经自动消失,这边一定要手动指定一个父类的构造函数引用;
//this.height=height;
</FONT>}
public void printMyWay(){
area=height*height;
length=4*height;
diagonal=StrictMath.sqrt(2*height*height);
<FONT color=red>//这边我也不大明白,我查了一下API,想要使用static修饰符所修饰的sqrt(),必须要导入java.lang.StrictMath包或者java.lang.Math包;
//最后还要提一下,一个java文件只能有一个公共类,而且这个公共类的类名要后java文件名一致;</FONT>
}
}
class Print {
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |