geometricobject.java

来自「介绍有关java的资料 课件 相当一本书籍 里面都是很基础的知识」· Java 代码 · 共 53 行

JAVA
53
字号
// 抽象类: 几何类(GeometricObject.java: )
public abstract class GeometricObject
{
  protected String color;
  protected double weight;

  // Default construct
  protected GeometricObject()
  {
    color = "white";
    weight = 1.0;
  }

  // Construct a geometric object
  protected GeometricObject(String color, double weight)
  {
    this.color = color;
    this.weight = weight;
  }

  // Getter method for color
  public String getColor()
  {
    return color;
  }

  // Setter method for color
  public void setColor(String color)
  {
    this.color = color;
  }

  // Getter method for weight
  public double getWeight()
  {
    return weight;
  }

  // Setter method for weight
  public void setWeight(double weight)
  {
    this.weight = weight;
  }


  // 抽象方法
  public abstract double findArea();

  // 抽象方法
  public abstract double findPerimeter();

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?