我可以更改变量的描述吗?

我想在这个地方看到自己的琴弦。我想自己生成这个字符串。
例如

"RTKAccount number=111 and FGSFDS"

进入
"RTKAccount (id=830039244504)".

我试图在我的课堂上更改toString()方法,但是没有用。
public String toString() {
    return "RTKAccount id=" + this.id + " number=" + this.number;
}

最佳答案

您要搜索的是详细信息格式化程序

在“变量”视图中右键单击该变量,然后选择“New Detail Formatter ...”。在向导中,将其键入大文本区域:

"RTKAccount id=" + id + " number=" + number

那里有它;-)

09-06 03:06
查看更多