I always thought that Java's code readability code was rather nice. Mainly because the structure of classes, methods, many control structures always remain the same visually.
You can usually scan a class easily without much interruption. It's modifier, return type / void method name, parameters, brace, body, brace.
Now this feature completely destroys that. It adds new syntax without much gain. The languages keeps on adding and bloating, like C++ and C#.
4
u/_INTER_ Sep 20 '18
I always thought that Java's code readability code was rather nice. Mainly because the structure of classes, methods, many control structures always remain the same visually. You can usually scan a class easily without much interruption. It's modifier, return type / void method name, parameters, brace, body, brace.
Now this feature completely destroys that. It adds new syntax without much gain. The languages keeps on adding and bloating, like C++ and C#.