C # static Constructor Usage Summary _c# Tutorial

Source: Internet
Author: User

• The static constructor has neither an access modifier nor a parameter.

• If a static constructor is not written and the class contains a static field with the initializer, the compiler automatically generates the default static constructor.

• When you create the first class instance or any static members are referenced. NET automatically invokes the static constructor to initialize the class, which means that we cannot call the static constructor directly, and we cannot control when the static constructor is executed.

• If the class contains the main method used to start execution, the static constructor for the class is executed before the main method is called.

• If a static field in a class is initialized, the initialization statement for the static field runs before the static constructor.

• A class can have only one static constructor.

• Parameterless constructors can coexist with static constructors. Although the argument list is the same, but one belongs to the class and one belongs to the instance, there is no conflict.

• Run at most once.

• Static constructors cannot be inherited.

• The sample code is as follows:



The results of the operation are:
Static A ()
Static B ()
x=1,y=2

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.