April 2018
Intermediate to advanced
396 pages
11h 8m
English
As we already saw, traits offer a form of multiple inheritance. In such cases, the hierarchy is not necessarily linear, but forms an acyclic graph that needs to be flattened upon compilation. What linearization does is this—it specifies a single linear order for all of the ancestors of a class, including both the regular superclass chain and the parent chains of all of the traits.
We will not have to deal with linearization in traits that contain no code. However, if we use mixins, we will have to consider it. The following will be affected by linearization:
We already saw a simple example of linearization previously. Things, however, can get much more complicated ...
Read now
Unlock full access