I am checking scala code base.
Something confused me is the Int class:
It's a final abstract
class, so all its member methods can not be implemented by subclassing. In addition, all of these member methods are abstract def without concrete implementation.
I can not understand why these abstract method works. Where can I find the concrete definition of these methods ?
final abstract
. My question emphasizes on the implementation of member methods. – Hao Ren