This question may sound weird but I am interested if it's possible to override a java hash map's get() method in scala so that: if the value is not in the hash map, instead of returning null we print some statement and call another method?
|
|
As Jed and paradigmatic already pointed out, this kind of overriding a single method of a larger class might be problematic. For example, map client code might expect that If you insist on doing it, you can separate the printing of the missing value and the returning of a default value into separate traits.
will print
|
|||
|
|
|
I strongly suggest avoiding inheritance of Java collections. Even in a purely OO context, the GoF book has strong arguments against that kind of inheritance. But if you really want it, you can, look at other answers. Now, in a Scala context, you have two main options:
If you need code example, leave a comment. |
|||
|
|
|
Sure; neither the class nor the method are marked
|
|||
|
|