Eclipse:在调试模式下更改变量的描述

时间:2014-02-06 11:01:14

标签: java eclipse debugging variables

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

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

"RTKAccount number=111 and FGSFDS"

的内容
"RTKAccount (id=830039244504)".  

我尝试在班级中更改toString()方法,但它无效。

public String toString() {
    return "RTKAccount id=" + this.id + " number=" + this.number;
}

2 个答案:

答案 0 :(得分:4)

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

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

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

你有它; - )

答案 1 :(得分:0)

您可以通过右键单击更改变量的值 - >更改值