Analysis method, Method

Source: Internet
Author: User

Analysis method, Method

Structure Method:

Unlike the constructor, constructor is used to instantiate an object. The constructor is used to clear an object. In C #, we do not need to write the destructor. The compilation system will automatically help us complete this task.

Note the following:

1. The Destructor cannot have any parameters, no return value, and no access modifier.

2. A class can have only one destructor, which means it cannot be overloaded. (Cannot be inherited)

3. The Destructor cannot be called automatically by the compilation system.

4. The destructor in C # can be left empty.

Syntax format of the Destructor:

1 public class Test2 {3 // destructor 4 ~ Test () 5 {6 // Execution Code body 7} 8}

 

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.