How does + operator behaves differently with numbers and strings in Java?
- by Abhishek Jain
Java does not have concept of operator overloading.
Still + operator behaves as addition operator with numbers and concatenate operator with strings. This is similar to the operator overloading behavior.
Please suggest.