Other |
---|
tbdUnresolved |
Relates :
|
The implementation of MultiUIDefaults.toString() has the following code: while (keys.hasMoreElements()) { Object key = keys.nextElement(); sb.append(key + "=" + get(key) + ", "); } The result of string concatenation is appended to StringBuilder, which creates another instance of StringBuilder to perform concatenation.