Name: gsC80088 Date: 12/09/98
To concatenate a character array to a string,
javac incorrectly produces code that calls
StringBuffer.append(Object) instead of
StringBuffer.append(char[]).
The following example writes something like
"abc[C@4ea0928f" instead of the expected "abcdef".
class t {
public static void main(String[] args) {
char[] def = { 'd', 'e', 'f' };
System.out.println("\tabc" + def);
}
}
(Review ID: 47297)
======================================================================
- duplicates
-
JDK-4250269 concatenation of char[] to String (using +) : new behavior with 1.2.x javac
-
- Closed
-