C # Inheritance

Source: Internet
Author: User

classa{ PublicA () {printfields (); }     Public Virtual voidPrintfields () {}}classb:a{intx =1; inty;  PublicB () {y= -1; }     Public Override voidPrintfields () {Console.WriteLine ("X={0},y={1}", x, y); }}
b b = new B ();
The output is: x=1,y=0

When a B object is instantiated, the parameterless constructor of Class A is automatically called, that is, the Printfields () method is output (because the global variable defaults to 0), and then the parameterless function of B is called, and B () is only assigned a value of-1 for Y, and no output is made
If B b=new b (); B.printfields (); Then the output is x=1,y=-1.


C # Inheritance

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.