0
Can anyone provide distinguish between method overriding and method overwriting in c++
3 Antworten
+ 1
I shall assume by overwriting you mean overloading.
Overriding - changing the implementation of a method which the class inherited from a superclass
Overloading - having multiple functions/methods with the same name but with different arguments, different argument types or different number of arguments
0
Method overwriting? Is that a thing?