Polymorphism

In reply to dave_59:

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.

Dave,

I meant calling a function directly object_handle.func versus object_handle.func calling another function. I think in the latter case, it is compile time binding