Why so many brackets / parentheses?
Why so many brackets / parentheses?
I am just curious as to why the system adds superfluous brackets to code?
For example, this:
if (A && B && C && D) {
//statements
}
is automatically converted by the system into this:
if ((((A) && (B)) && (C)) && (D)) {
//statements
}
The former is much easier to read and follow than the latter.
Anton