Has anyone got an idea regarding the motivation behind the awkward design of the java.lang.System.out?
Awkwardness:
First, the out member is exposed (Encapsulation anyone?).
Second, it is final but can be changed via setOut() (contradicts final).
|
|
In Java 1.0.x |
|||||
|
|
I would bet it is exposed mainly for brevity. Compare:
with
The former is not many character shorter, but still it is shorter, and simpler conceptually. It is also very probably faster, perhaps especially back in the day when JIT was not too common in Java virtual machines; I bet the direct access is faster than a method call in those cases. So, it boils down to being a tradeoff. UPDATE: This is just my interpretation of the API and the thoughts that might be behind its design, I could be off. |
|||||||
|
|
This has similarities with Could it have been done for historical reasons? Are there any other languages like this? |
|||||||||||
|