Method rewriting and hiding

Source: Internet
Author: User

Let's look at an example.

Code

Class Program
{
Static   Void Main ( String [] ARGs)
{
Baseclass =   New Derivedclass ();
Console. writeline (baseclass. getstring ());
// Derivedclass driverclass = new derivedclass ();
// Console. writeline (driverclass. getstring ());
Console. Readline ();
}
}
Public   Class Baseclass
{
Public   Virtual   String Getstring ()
{
Return   " This is the getstring () method of the base class. " ;
}
}

Public   Class Derivedclass: baseclass
{
Public   Override   String Getstring ()
{
Return   " This is the getstring () method of the inherited class. " ;
}
}

The output result is:This is the getstring () method of the inherited class.

This result is displayed becauseGetstring() The method is overwritten by the inherited class. What will be output if we change the modifier of the getstring () method of the inherited class from override to new?

Code Class Program
{
Static   Void Main ( String [] ARGs)
{
Baseclass =   New Derivedclass ();
Console. writeline (baseclass. getstring ());
// Derivedclass driverclass = new derivedclass ();
// Console. writeline (driverclass. getstring ());
Console. Readline ();
}
}
Public   Class Baseclass
{
Public   Virtual   String Getstring ()
{
Return   " This is the getstring () method of the base class. " ;
}
}

Public   Class Derivedclass: baseclass
{
Public   New   String Getstring ()
{
Return   " This is the getstring () method of the inherited class. " ;
}
}

The output result is:This is the getstring () method of the base class.

Check that the base class method is called. The inheritance class hides the getstring method in the base class.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.