Why in Java you're able to add Strings with the + operator, when String is a class? In theString.java code I did not find any implementation for this operator. Does this concept violate object orientation?
|
Let's look at the following simple expressions in Java
The compiler converts From the Java Language Specification:
The optimized version will not actually do a full wrapped String conversion first. This is a good illustration of an optimized version used by the compiler, albeit without the conversion of a primitive, where you can see the compiler changing things into a StringBuilder in the background: http://caprazzi.net/posts/java-bytecode-string-concatenation-and-stringbuilder/ This java code:
Generates this - see how the two concatenation styles lead to the very same bytecode:
Looking at the example above and how the byte code based on the source code in the given example is generated, you will be able to notice that the compiler has internally transformed the following statement
into
In other words, the operator |
|||||||||||||||||||||
|
|
It is JAVA compiler feature which checks the operands of
This is what the JAVA spec says:
|
|||||||||||||
|
It doesn't. The compiler does it. Strictly speaking, the compiler overloads the + operator for String operands. |
||||
|
|
1) If left hand side operand is String it works as concatenation. 2) If left hand side operand is Integer it works as addition operator |
|||||||
|
|
The |
|||||||
|
|
The Java language provides special support for the string concatenation operator (+) and for conversion of other objects to strings. String concatenation is implemented through the |
|||
|
|
|
The meaning of the Ints, floats and doubles all have different binary representations, and therefore adding two ints is a different operation, in terms of bit manipulation, than adding two floats: For ints you can add bit by bit, carrying a bit and checking for overflow; for floats you must deal with the mantissas and exponents separately. So, in principle, "addition" depends on the nature of the objects being "added". Java defines it for Strings as well as ints and floats (longs, doubles, ...) |
|||
|
|


+) operator is language feature of Java. – AVD Jul 10 '12 at 7:24