黑马程序员技术交流社区

标题: 定义一个长方形类 [打印本页]

作者: shijialong1111    时间: 2016-7-3 10:06
标题: 定义一个长方形类
需求:
                * 定义一个长方形类,定义 求周长和面积的方法,
                * 然后定义一个测试类进行测试。
作者: ImKing    时间: 2016-7-3 10:18
  1. public class Rectangle {

  2.         // Rectangle : 矩形
  3.         private double length = 0.0; // 长 属性
  4.         private double width = 0.0; // 宽 属性

  5.         public double getLength() {
  6.                 return length;
  7.         }

  8.         public void setLength(double length) {
  9.                 this.length = length;
  10.         }

  11.         public double getWidth() {
  12.                 return width;
  13.         }

  14.         public void setWidth(double width) {
  15.                 this.width = width;
  16.         }

  17.         // 自定义 计算周长方法
  18.         public double circumference() {

  19.                 return (this.length + this.width) * 2;
  20.         }

  21.         // 自定义 计算面积方法
  22.         public double area() {

  23.                 return this.length * this.width;
  24.         }

  25.         // 入口方法
  26.         public static void main(String[] args) {

  27.                 Rectangle rect = new Rectangle();

  28.                 rect.setLength(3.0);
  29.                 rect.setWidth(5.0);
  30.                 System.out.println("周长为:" + rect.circumference());
  31.                 System.out.println("面积为:" + rect.area());
  32.         }
  33. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2