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
String.java
The + operator is usually replaced by a StringBuilder at compile time. Check this answer for more details on that matter.
+
StringBuilder