gpt4 book ai didi

java - 如何正确调用 toString

转载 作者:行者123 更新时间:2023-11-30 08:00:18 25 4
gpt4 key购买 nike

我试图在 Box 类中创建一个 toString 方法来调用 BoxTest 类。我已经设置了我想调用的方法 (getLength, getHeight, getWidth, calculateArea, calculateVolume),它们自己可以正常工作,但我不确定在调用 toString 时如何使用它们。

这是我当前代码的一个 pastebin ( http://pastebin.com/Ex520ST6)。

盒子

public class Box
{
private double length = 1.0;
private double width = 1.0;
private double height = 1.0;

public Box(double length, double width, double height) // constructor with thrown exceptions
{
if (length <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

if (width <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

if (height <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

this.length = length;
this.width = width;
this.height = height;
}

public void setLength(double length)
{
if (length <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

this.length = length;
System.out.println("The new length is: " + length);

}
public double getLength()
{
System.out.println("The length is: " + length);
return length;
}
public void setWidth(double width)
{
if (width <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

this.width = width;
System.out.println("The new width is: " + width);
}
public double getWidth()
{
System.out.println("The width is: " + width);
return width;
}
public void setHeight(double height)
{
if (height <= 0)
throw new IllegalArgumentException("Values must be higher than 0");

this.height = height;
System.out.println("The new height is: " + height);
}
public double getHeight()
{
System.out.println("The height is: " + height);
return height;
}
public double calculateArea()
{
double area = (double) (2*length*width + 2*length*height + 2*width*height);
System.out.println("The area is: " + area);
return area;
}
public double calculateVolume()
{
double volume = (double) length*width*height;
System.out.println("The volume is: " + volume);
return volume;
}
public String toString()
{
return String.format("The length is %f, the width is %f, the height is %f, the area is %f, the volume is %f,");
}
}

盒子测试

public class BoxTest
{
public static void main (String[] args)
{
Box[] boxes = new Box[4];

boxes[0] = new Box(1.0,2.0,3.0);
boxes[1] = new Box(4.0,5.0,6.0);
boxes[2] = new Box(1.0,7.0,8.0);
boxes[3] = new Box(1.0,9.0,9.0);

for (Box theBoxes : boxes)
{

System.out.printf(theBoxes.getLength(),theBoxes.getWidth(),theBoxes.getHeight(),theBoxes.calculateArea(),theBoxes.calculateVolume().toString());

}

boxes[3].setLength(11.0); // debug
}
}
  1. 总体而言,我走在正确的轨道上吗
  2. 我是否应该在 toString 标题中使用 "%s" 说明符
  3. 我还需要在 printf 中使用格式说明符吗?如果需要,它应该是 %s 还是 %f,因为我的方法是 double 类型。

谢谢!

最佳答案

toString() 重写应该返回一个带有值本身的 String,而不依赖于 System.out.printf() 的外部使用> (该方法当然可以在类中使用,但是类应该返回一个完全格式化的 String 而不是包含像 %s 这样的格式化程序的字符串)。示例实现如下。

class Animal {

public String name;
public int numlegs;
public double weight;

// ...

@Override
public String toString() {
return String.format("Animal, name: %s, legs: %d, weight: %d", name, numLegs, weight);
}

}

然后,您只需调用 toString() 方法即可检索对象的完整 String 表示形式。

鼓励使用 printf() 而不是大规模的 String 连接,因为它可以使代码更清晰(至少是 IMO)。

旁注:

  1. 您的 toString() 方法调用 printf() 但未提供应替换 String 格式的格式化程序的值。
  2. printf() 的调用应将格式 String 作为第一个参数,并将值作为其余参数。

关于java - 如何正确调用 toString,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38599911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com