-
Enhancement
-
Resolution: Not an Issue
-
P5
-
None
-
1.3.0
Name: rlT66838 Date: 05/17/2000
I was looking at bytecode generated by javac and noticed a curious difference
between jdk1.2.2 and jdk1.3 final
javac 1.2.2 had a revised code generation for concatenation such that
aString = string1 + string2;
generates
aString = new StringBuffer(String.valueOf(string1)).append(string2);
But, javac 1.3 generates
aString = new StringBuffer().append(string1).append(string2);
The 1.3 code generation is the same as that generated by older javac versions
(sometime prior to 1.2.2). Is that intentional? Either the 1.3 writers failed
to incorporate a late improvement from the 1.2.2 branch, or someone decided
that the 1.2.2 method wasn't such a good idea.
I'm just calling this to your attention in case it's an oversight.
(Review ID: 105010)
======================================================================
I was looking at bytecode generated by javac and noticed a curious difference
between jdk1.2.2 and jdk1.3 final
javac 1.2.2 had a revised code generation for concatenation such that
aString = string1 + string2;
generates
aString = new StringBuffer(String.valueOf(string1)).append(string2);
But, javac 1.3 generates
aString = new StringBuffer().append(string1).append(string2);
The 1.3 code generation is the same as that generated by older javac versions
(sometime prior to 1.2.2). Is that intentional? Either the 1.3 writers failed
to incorporate a late improvement from the 1.2.2 branch, or someone decided
that the 1.2.2 method wasn't such a good idea.
I'm just calling this to your attention in case it's an oversight.
(Review ID: 105010)
======================================================================
- relates to
-
JDK-4642733 Use StringBuffer instead of String concatenation
-
- Closed
-