欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

toString方法

程序员文章站 2022-06-16 23:13:33
...
很简单的代码,但是没有规范就写的很乱。
另外很多记录log的时候应该可以采用toString这样的方法来减少冗余。

/**
* <p>Returns a String in the format: key[value1, value2, etc].</p>
*
* @return String representation of this message
* @see java.lang.Object#toString()
*/
public String toString() {
StringBuffer buff = new StringBuffer();

buff.append(this.key);
buff.append("[");

if (this.values != null) {
for (int i = 0; i < this.values.length; i++) {
buff.append(this.values[i]);

// don't append comma to last entry
if (i < (this.values.length - 1)) {
buff.append(", ");
}
}
}

buff.append("]");

return buff.toString();
}
相关标签: Java