What is the philosophy behind making the instance variables public by default in Scala. Shouldn't making them private by default made developers make less mistakes and encourage composition?
|
First, you should know that when you write:
If you write instead:
The philosophy of Scala is to prefer immutable instance variables, then having public accessors methods is no more a problem. |
|||||||
|
|
Private encourages monoliths. As soon as it's easier to put unrelated functionality into a class just because it needs to read some variables that happen to be private, classes start to grow. It's just a bad default and one of the big reasons for classes with more than 1000 lines in Java. Scala defaults to immutable, which removes a massive class of errors that people often use private to restrict (but not remove, as the class' own methods can still mutate the variables) in Java. |
|||
|
|
|
|||
|
|
|
(An additional view supplementing the other answers:) One major driver behind Java's encapsulation of fields was the uniform access policy, i.e. you didn't have to know or care whether something was implemented simply as a field, or calculated by a method on the fly. The big upside of this being that the maintainer of the class in question could switch between the two as required, without needing other classes to be modified. In Java, this required that everything was accessed via a method, in order to provide the syntactic flexibility to calculate a value if needed. In Scala, methods and fields can be accessed via equivalent syntax - so if you have a simple property now, there's no loss in encapsulation to expose it directly, since you can choose to expose it as a no-arg method later without your callers needing to know anything about the change. |
|||
|
|