Virtual and override-constantly updated

Source: Internet
Author: User
Using system; using system. collections. generic; namespace test {// Wang Liangliang is my best friend. // Wang minguang is his father. // Wang Shaowen is his grandfather. public class wangshaowen {public wangshaowen () {} virtual public void saysomething () {console. writeline ("Hello everyone, I'm Wang Shaowen! ") ;}} Public class wangminguang: wangshaowen {public wangminguang () {}// you can use the virtual keyword to append the function with the same name as the parent class. Virtual public void saysomething () {// call the method of the same name as the parent class to complete the append implementation base for the function of the same name as the parent class. saysomething (); console. writeline ("Hello everyone, I'm Wang minguang! ") ;}} Public class wangliangliang: wangminguang {public wangliangliang () {}// use the override keyword to redefine the parent class operation. override public void saysomething () {// you can also call the method with the same name as the parent class. base. saysomething (); console. writeline ("Hello everyone, I'm Wang Liangliang! ") ;}} Class program {static void main () {wangliangliang Sha = new wangliangliang (); Sha. saysomething (); console. readkey ();}}}

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.