How do you make a protected method in a class accessible to just all classes in the package in Scala?
|
feedback
|
|
Jija, you already know that the protected keyword has a different meaning in Scala compared to Java, but some readers might not know this. Soooo, let's say we have a class A with a method foo().
Apparently Jija needs the Java behavior, but it is very seldom I do. Before Scala I often complained (while programming Java) that "I want this method to be private, but I still want subclasses to see it. Why is this not possible?" I regard the changed behavior of protected to be a correction of a design flaw in Java. Hope you learn to love the Scala way :-) | |||
|
feedback
|
|
Turns out you can do
| |||||
feedback
|
|
If we pay attention to the distinction between function and method, we can define an object deriving from
Edit: OK, after the original poster changed his question from function to method, this is no longer relevant. | ||||
feedback
|