Whether the string class can be inherited in C #

Source: Internet
Author: User

Can I inherit the String class in C #?


A: The string class is a sealed class and cannot be inherited.

When the sealed modifier is applied to a class, this modifier prevents other classes from inheriting from the class. In the following example, the class Hovertree inherits from the class Keleyi, but no class can inherit from the class Hovertree.

Class Keleyi {}
Sealed class Hovertree:keleyi {}

You can also use the sealed modifier on a method or property that overrides a virtual method or a virtual property in a base class. This will enable you to allow classes to inherit from your class and prevent them from overriding specific virtual methods or virtual properties.

Transferred from: http://hovertree.com/hvtart/bjae/39caf76748abbd63.htm

Development technical Article collection: Http://www.cnblogs.com/sosoft/p/kaifajishu.html

Whether the string class can be inherited in C #

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.