in java given this:
String a = "str";
CharSequence b = "charseq";
you can write
b = b + a;
but cannot write (gives a compiler error)
b += a;
error is
incompatible types
found : java.lang.CharSequence
required: java.lang.String
Now in JLSv2 this was explainable by this line (15.26.2) at http://java.sun.com/docs/books/jls/second_edition/html/expressions.doc.html#5304 :
All compound assignment operators require both operands to be of primitive type, except for +=, which allows the right-hand operand to be of any type if the left-hand operand is of type String.
But in JLSv3 this comment disappeared, the only thing that is said about compound operator is at http://java.sun.com/docs/books/jls/third_edition/html/expressions.html#15.26.2 :
A compound assignment expression of the form E1 op= E2 is equivalent to E1 = (T)((E1) op (E2)), where T is the type of E1, except that E1 is evaluated only once.
which doesn't seem to work (see above).
So my question is - what exactly is the relationship between javac and JLS and is this particular example an error in javac or an error in JLS?
All compound assignment operators require both operands to be of primitive type, except for +=, which allows the right-hand operand to be of any type if the left-hand operand is of type String.Note that you're left-hand operand IS NOT of type String – KevinDTimm Sep 6 '11 at 13:25Objectinstead ofCharSequence.) – Paŭlo Ebermann Sep 6 '11 at 14:07