當我運行 Rectangle.java 時,我可以獲得矩形中輸入的長度和寬度,但是當我嘗試使用 getter 計算面積/周長時,結果為零我嘗試添加和刪除 setter,在 getArea 和 getPerimeter 中放入 getter/setter 方法,但似乎沒有任何效果//Code provided by the teacher as a template Rectangle temp = new Rectangle(); temp.print(); System.out.println(); temp.setLength(2.5); temp.setWidth(3.0); //Consider how your rectangle will change after setting the length and width to specific values. temp.print(); System.out.println(); Rectangle r = new Rectangle(3.5,2); r.print();//My Classpublic class Rectangle { private static double length; private static double width; private static double perimeter; private static double area; public Rectangle(double length, double width) { setLength(length); setWidth(width); } public Rectangle() { } public static double getLength() { return length; } public static void setLength(double length) { Rectangle.length = length; } public static double getWidth() { return width; } public static void setWidth(double width) { Rectangle.width = width; } public static double getPerimeter(double length, double width) { return 2*width+2*length; } public static double getArea(double length, double width) { area= getLength()*getWidth(); return length*width; } public static String print() { String Rectangle = new String(); System.out.println("This rectangle has a length of "+length+" and a width of "+width); System.out.println("The area of the rectangle is: "+ area); System.out.println("The perimeter of the rectangle is: "+ perimeter); return Rectangle; }}沒有錯誤消息。輸出:該矩形的長度為 0.0,寬度為 0.0 矩形的面積為: 0.0 矩形的周長為: 0.0該矩形的長度為 2.5,寬度為 3.0 矩形的面積為: 0.0 矩形的周長為: 0.0該矩形的長度為 3.5,寬度為 2.0 矩形的面積為: 0.0 矩形的周長為: 0.0
1 回答

慕蓋茨4494581
TA貢獻1850條經驗 獲得超11個贊
您需要更改打印方法并調用周長和面積方法,以便這些變量獲得所需的值
public static String print()
{
getPerimeter(length,width);
getArea(length,width);
String Rectangle = new String();
System.out.println("This rectangle has a length of "+length+" and a width of "+width);
System.out.println("The area of the rectangle is: "+ area);
System.out.println("The perimeter of the rectangle is: "+ perimeter);
return Rectangle;
}
我建議不要使用靜態關鍵字,因為值不會綁定到對象
添加回答
舉報
0/150
提交
取消