5. How to call the base class constructor in C #

Source: Internet
Author: User

// Base class using System; using System. collections. generic; using System. linq; using System. text; using System. threading. tasks; namespace MVATwentyQuestions {class Test {public string _ name = ""; public Test (string name) {_ name = name;} public virtual void ConvertToUpper () {_ name = _ name. toUpper () ;}}// subclass using System; using System. collections. generic; using System. linq; using System. text; using System. threading. tasks; namespace MVATwentyQuestions {class InheritTest: Test {// base ("NewName"); // incorrect call, so the comments // inherit the constructors of the base class public InheritTest (string name): base (name) {}// inherit the constructors of the base class, public InheritTest (string name): base (ModifyBase (name) {} private static string ModifyBase (string newName) {return newName. toUpper () ;}}// Main method static void Main (string [] args) {Console. writeLine (); Test nTest = new Test ("Base"); Console. writeLine (nTest. _ name); InheritTest iTest = new InheritTest ("NewName"); Console. writeLine (iTest. _ name );}


Constructor that inherits the base class
Result:
Base
NewName

Inherits the constructor of the base class and passes in the constructor parameter as a value method.

Result:
Base
NEWNAME



Related Article

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.