Re: Why Java's math expression (power) is so inconvenient and error prone?




Lionel wrote:

If that is still too difficult I suggestion you learn about the
advantages of an Object-Oriented programming language.

One of them is to have no operator overloading? Come on. This has
nothing to do with OO or not OO.
BTW, do you write
new StringBuffer().append("foo").append(i).toString()
instead of
"foo" + i
?

.