gpt4 book ai didi

Java:为什么我的 toString 方法打印错误信息?

转载 作者:行者123 更新时间:2023-12-01 12:25:50 25 4
gpt4 key购买 nike

我有一个抽象父类(super class),它有两个属性:int 和 string。我已经覆盖了其中的 toString 方法及其具有一个额外属性 (LocalDate) 的子类。但是,由于某种我不明白的原因,当我打印子类 toSring 信息时,int 值会发生变化。

这是我在父类(super class)中的内容:

public abstract class File {
private int id;
private String text;

public File(int newId, String newText) throws IllegalArgumentException {
id(newId);
text(newText);
}

public int id() {
return id;
}

public void id(int e) throws IllegalArgumentException {
if (e <= 0) {
throw new IllegalArgumentException();
}
else {
id = e;
}
}

public String text() {
return text;
}

public void text(String aText) throws IllegalArgumentException {
if (aText == null || aText.length() == 0) {
throw new IllegalArgumentException();
}
else {
text = aText;
}
}

@Override
public String toString() {
return '"' + id() + " - " + text() + '"';
}

然后在子类中我有这个:
public class DatedFile extends File {
private LocalDate date;

public DatedFile (int newId, LocalDate newDate, String newText) throws IllegalArgumentException {
super(newId, newText);
date(newDate);
}

public LocalDate date() {
return date;
}

public void date(LocalDate aDate) throws IllegalArgumentException {
if (aDate == null) {
throw new IllegalArgumentException();
}
else {
date = aDate;
}
}
@Override
public String toString() {
return '"' + id() + " - " + date + " - " + text() + '"';
}

我是这样测试的:
public static void main(String[] args) {
LocalDate when = LocalDate.of(2020, 1, 1);
DatedFile datedFile1 = new DatedFile(999, when, "Insert text here");
System.out.println(datedFile1);

它打印:“1033 - 2020-01-01 - 在此处插入文本”
但是,如果我使用以下代码
System.out.println(datedFile1.id());

它打印正确的 id (999)。所以我假设 toString 的某些东西把它搞砸了,但我不知道问题出在哪里。

附注。我是初学者,如果我包含了太多代码,我很抱歉,但由于我不知道是什么问题,我真的不知道什么是相关的,什么不是。

最佳答案

你的问题在这里:

return '"' + id() + " - " + date + " - " + text() + '"';
id()返回 int , 和 '"'char ,这是一个数字类型。所以 '"' + 9991033 ,不是 "999 .

要解决此问题,请使用字符串而不是字符:
return "\"" + id() + " - " + date + " - " + text() + "\"";

关于Java:为什么我的 toString 方法打印错误信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61309593/

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