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