• 大小: 2.67KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 提高产品质量的方法(基础篇-实例101).zip

资源截图

代码片段和文件信息

package com.mingrisoft.oop;

public class Box {
    private double length;
    private double width;
    private double height;
    
    public double getLength() {
        return length;
    }
    
    public void setLength(double length) {
        if (length <= 0) {
            this.length = 1;
        } else {
            this.length = length;
        }
    }
    
    public double getWidth() {
        return width;
    }
    
    public void setWidth(double width) {
        if (width <= 0) {
            this.width = 1;
        } else {
            this.width = width;
        }
    }
    
    public double getHeight() {
        return height;
    }
    
    public void setHeight(double height) {
        if (height <= 0) {
            this.height = 1;
        } else {
            this.height = height;
        }
    }
    
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2010-09-11 17:02  .classpath
     文件         379  2010-09-11 17:02  .project
     文件         974  2013-11-21 08:41  bin\com\mingrisoft\oop\Box.class
     文件        1239  2013-11-21 08:41  bin\com\mingrisoft\oop\Test.class
     文件         882  2010-09-11 17:02  src\com\mingrisoft\oop\Box.java
     文件         574  2010-09-11 17:02  src\com\mingrisoft\oop\Test.java

评论

共有 条评论