java类与对象实验报告心得体会_第四周课程总结与实验报告(Java简单类与对象)...
1.寫一個名為Rectangle的類表示矩形。其屬性包括寬width、高height和顏色color,width和height都是double型的,而color則是String類型的。要求該類具有:
(1) 使用構造函數完成各屬性的初始賦值
(2) 使用get…()和set…()的形式完成屬性的訪問及修改
(3) 提供計算面積的getArea()方法和計算周長的getLength()方法
實驗代碼
public class Rectangle {
private double height;
private double width;
private String color;
public double getHeight(){
return height;
}
public void setHeight(double height){
this.height = height;
}
public double getWidth(){
return width;
}
public void setWidth(double width){
this.width = width;
}
public String getColor(){
return color;
}
public void setColor(String color){
this.color = color;
}
public Rectangle(double height,double width,String color ){
this.setHeight(height);
this.setWidth(width);
this.setColor(color);
}
public void getArea(){
double area = 0;
area = this.height*this.width;
System.out.println("矩形的面積" + area);
}
public void getGirth(){
double girth = 0;
girth = (this.height + this.width)*2;
System.out.println("矩形的周長" + girth);
}
public String toString(){
String recStr = "矩形的高度:" + this.getHeight() + "矩形的高度:" + this.getWidth() + "顏色:" + this.getColor();
return recStr;
}
public static void main(String args[]){
Rectangle rec = new Rectangle(8,9,"黑色");
rec.getArea();
rec.getGirth();
System.out.println(rec.toString());
}
}
原文:https://www.cnblogs.com/buxiu888/p/11536002.html
總結
以上是生活随笔為你收集整理的java类与对象实验报告心得体会_第四周课程总结与实验报告(Java简单类与对象)...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php 调用极光api,利用php+cu
- 下一篇: javascript --- 抽象相等