Polymorphism

In reply to verif_learner:

If by regular call, you mean a non-class method, that is not the case. It might help to think about the implicit this class variable. The call to
funct2
is really the same as
this.funct2
, where the type of
this
variable is the current class.