“OverloadResolutionOverride” (Solution)
Answer
Explanation
There is a rule: if compiler found a suitable signature for a method call in the “current” class, compiler will not look to parents classes. In this problem, the Bar
and Baz
classes have own versions of the Quux
method. Their signatures are suitable for the call argument list. Thus, they will be called; the overloaded Quux
method of the base class will be ignored.
Links
Last updated