Programmer interview guide-Role of static keywords in C Language

Source: Internet
Author: User

1. Hide a global variable defined as static. The global variable is only visible in the source file, so that global variables with the same name can be defined in different source files.

2. Persistence. If the variable defined in the function is static, the value of the variable is obtained every time the variable is called.

3. the initialization value is 0.

4. The static global variables defined in the module can be accessed by functions in the module, but cannot be accessed by functions outside the module.

5. The static function defined in the module can only be called by the function of the module.

6. Static variables in the class belong to the entire class, and only one copy of all objects can be created.

7. The static member function in the class belongs to the entire class. This function cannot accept the this pointer, so it can only accept static variables of the category.

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.