virtual
means the method called will be chosen at run-time, depending on the dynamic type of the object. static
means no object is necessary to call the method.
How do you propose to do both in the same method?
virtual
means the method called will be chosen at run-time, depending on the dynamic type of the object. static
means no object is necessary to call the method.
How do you propose to do both in the same method?