What is the difference between static global variables and common global variables? What is the difference between static local variables and common local variables? What is the difference between a static function and a common function?

Source: Internet
Author: User

1) global variables (external variables) the description above is followed by static to form a static global variable. Global variables are static storage, and static global variables are also static storage. The two are not different in storage methods. Program , when a source program is composed of multiple source files, non-static global variables are valid in each source file. static global variables limit their scopes, that is, it is valid only in the source file defining the variable. It cannot be used in other source files of the same source program . Because the scope of static global variables is limited to one source file, they can only be shared by functions in the source file. Therefore, errors in other source files can be avoided.

2) from the above analysis, we can see that after a local variable is changed to a static variable, its storage mode is changed, that is, its survival time is changed. After changing a global variable to a static variable, it changes its scope and limits its scope of use.

3) static functions and common functions have different scopes. They are only available in this file.Only functions used in the current source file should be declared as internal functions (static). Internal functions should be described and defined in the current source file.For functions that can be used outside the current source file, it should be described in a header file that the source file to use these functions must contain this header file.

To sum up:

What is the difference between static global variables and common global variables:

Static global variables are modified only once to prevent being referenced in other file units;

What is the difference between static local variables and common local variables:

Static local variables are initialized only once, and the next time is based on the previous result value;

What are the differences between static functions and common functions:

The static function has only one copy in the memory, and the normal function maintains one copy in each call.

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.