Computer Science, asked by swetarout1702, 4 months ago

name an operator which is overloaded in java​

Answers

Answered by charanimukku
0

Answer: There is no operator overloading in Java. Apparently for reasons of taste.

Explanation:

Answered by maheshwari9599
0

Answer:

No, Java doesn't support user-defined operator overloading. The only aspect of Java which comes close to "custom" operator overloading is the handling of + for strings, which either results in compile-time concatenation of constants or execution-time concatenation using StringBuilder/StringBuffer

Similar questions