代码:
/**
* 矩形类
*
* @author qd
*
*/
class Rectangle {
// 长
double lenght;
// 宽
double width;
// 构造方法,用来初始化属性
public Rectangle(double lenght, double width) {
this.lenght = lenght;
this.width = width;
}
// 计算面积的方法
public void getArea() {
System.out.println("计算面积的方法");
}
}
/**
* 长方体
*
* @author qd
*
*/
class Cuboid extends Rectangle {
// 高
double high;
public Cuboid(double lenght, double width, double high) {
super(lenght, width);
this.high = high;
}
// 计算长方体表面积的方法
public void getArea() {
double area1 = lenght * width * 2;
double area2 = lenght * high * 2;
double area3 = width * high * 2;
double sum_area = area1 + area2 + area3;
System.out.println("长方体表面积是:" + sum_area);
}
}
public class Test {
public static void main(String[] args) {
Cuboid cuboid = new Cuboid(10, 7, 5);
cuboid.getArea();
}
}
演示:
《JAVA编程(第5版)(英文影印版)》为入门级程序员提供了用JAVA编程语言开发应用程序的方法。JAVA语言深受专业程序员青睐,因为它可以用来制造在视觉上有趣的图形用户界面(GUI)和互联网应用程序。