What is the concept of method overriding in C++ ? Please advice or any helpful link.
Method Overriding Anonymous User 3303 20 Oct 2010 What is the concept of method overriding in C++?Please advice or any helpful link.
Example for Overriding
Class X
{
Virtual void Add(int a, int b)
{
}
}
Class Y:X
{
public override void Add(int a, int b)
{
}
}