Understand the static keyword in C ++

Source: Internet
Author: User

C ++OfStaticThere are two usage methods: static in process-oriented programming and static in object-oriented programming. The former applies to common variables and functions, and does not involve classes. The latter mainly describes the role of static in classes.

I. static in process-oriented design

1. Static global variables

Add the keyword static before the global variable, which is defined as a static global variable. Here is an example of a static global variable:

 
 
  1. // Example 1
  2. # I nclude <iostream. h>
  3. Void fn ();
  4. Static int n; // defines the static global variable.
  5. Void main ()
  6. {
  7. N = 20;
  8. Cout <n <endl;
  9. Fn ();
  10. }
  11.  
  12. Void fn ()
  13. {
  14. N ++;
  15. Cout <n <endl;
  16. }

Static global variables have the following features:

  • This variable allocates memory in the global data zone;
  • Uninitialized static global variables will be automatically initialized by the program to 0. The values of automatic variables are random unless they are explicitly initialized );
  • Static global variables are visible in the entire file declared, but invisible outside the file;

All static variables are allocated memory in the global data zone, including the static local variables to be mentioned later.

In general, dynamic data generated by new is stored in the heap zone, and automatic variables in the function are stored in the stack zone. Automatic variables usually release space as the function exits. static data, even static local variables in the function, is stored in the global data zone. The data in the global data zone does not release space because the function exits. Careful readers may find that

 
 
  1. Static int n; // defines the static global variable.
  2. Change
  3. Int n; // defines the global variable

The program runs normally.

Indeed, defining global variables can share variables in files, but defining static global variables has the following benefits:

  • Static global variables cannot be used by other files;
  • Variables with the same name can be defined in other files without conflict;

You can change the Sample Code as follows:

 
 
  1. // Example 2
  2. // File1
  3. # I nclude <iostream. h>
  4. Void fn ();
  5. Static int n; // defines the static global variable.
  6. Void main ()
  7. {
  8. N = 20;
  9. Cout <n <endl;
  10. Fn ();
  11. }
  12. // File2
  13. # I nclude <iostream. h>
  14. Extern int n;
  15. Void fn ()
  16. {
  17. N ++;
  18. Cout <n <endl;
  19. }

Compile and run Example 2, and you will find that the above Code can be compiled separately, but an error occurs during running. Try

 
 
  1. Static int n; // defines the static global variable.
  2. Change
  3. Int n; // defines the global variable

Compile and run the program again to understand the differences between global variables and static global variables.

2. Static local variables

Before a local variable, add the keyword static to define the variable as a static local variable. Here is an example of static local variables:

 
 
  1. //Example 3  
  2. #i nclude <iostream.h>  
  3. void fn();  
  4. void main()  
  5. {  
  6. fn();  
  7. fn();  
  8. fn();  
  9. }  
  10. void fn()  
  11. {  
  12. static n=10;  
  13. cout<<n<<endl;  
  14. n++;  

Generally, a variable is defined in the function body, and stack memory is allocated to the local variable whenever the program runs the statement. However, as the program exits from the function body, the system will reclaim the stack memory and the local variables will also become invalid.
But sometimes we need to save the variable value between two calls. The general idea is to define a global variable for implementation. In this way, the variable no longer belongs to the function itself, and is no longer only controlled by the function, causing inconvenience to program maintenance.

Static local variables have the following features:

  • This variable allocates memory in the global data zone;
  • Static local variables are initialized for the first time when the program executes the declaration of this object, that is, function calls will not be initialized in the future;
  • Static local variables are generally initialized at the Declaration. If no Explicit initialization is performed, the static local variables will be automatically initialized to 0 by the program;
  • It always resides in the global data zone until the program running ends. However, its scope is local scope. When the function or statement block that defines it ends, its scope ends;

3. Static Functions

Add the static keyword before the return type of the function. The function is defined as a static function. A static function is different from a common function. It can only be seen in the file where it is declared and cannot be used by other files. Static functions can only operate static member variables ...), It can also be used as a callback function. The most important thing is that the function does not have the this pointer.
Example of static functions:

 
 
  1. // Example 4
  2. # Include <iostream. h>
  3. Static void fn (); // declare a static function
  4. Void main ()
  5. {
  6. Fn ();
  7. }
  8. Void fn () // defines static functions
  9. {
  10. Int n = 10;
  11. Cout <n <endl;
  12. }

Benefits of defining static functions:

  • Static functions cannot be used by other files;
  • Functions with the same name can be defined in other files without conflict;

2. static keywords in the object-oriented static keyword class)

1. static data member

Add the keyword static before the declaration of the data member in the class. The data member is the static data member in the class. Here is an example of a static data member.

 
 
  1. // Example 5
  2. # Include <iostream. h>
  3. Class Myclass
  4. {
  5. Public:
  6. Myclass (int a, int B, int c );
  7. Void GetSum ();
  8. Private:
  9. Int a, B, c;
  10. Static int Sum; // declare a static data member
  11. };
  12. Int Myclass: Sum = 0; // defines and initializes static data members.
  13. Myclass: Myclass (int a, int B, int c)
  14. {
  15. This-> a =;
  16. This-> B = B;
  17. This-> c = c;
  18. Sum + = a + B + c;
  19. }
  20. Void Myclass: GetSum ()
  21. {
  22. Cout <"Sum =" <Sum <endl;
  23. }
  24. Void main ()
  25. {
  26. Myclass M (1, 2, 3 );
  27. M. GetSum ();
  28. Myclass N (4,5, 6 );
  29. N. GetSum ();
  30. M. GetSum ();
  31. }

It can be seen that static data members have the following features:

1) For non-static data members, each class object has its own copy. Static data members are treated as class members. No matter how many objects are defined for this class, the static data member has only one copy in the program, which is shared by all objects of this type. That is to say, static data members are shared by all objects in the class. For multiple objects in this class, static data members only allocate memory once for all objects to share. Therefore, the values of static data members are the same for each object, and their values can be updated;

2) static data members are stored in the global data zone. Space must be allocated when defining static data members, so they cannot be defined in the class declaration. In Example 5, the statement int Myclass: Sum = 0 is a member that defines static data;

3) static data members follow the public, protected, and private access rules like common data members;

4) Because static data Members allocate memory in the global data zone and all objects in this category are shared, they are not specific class objects, when no class object is generated, its scope is visible, that is, when no class instance is generated, we can operate on it;

5) static data member Initialization is different from general data member initialization. The static data member initialization format is:

<Data type> <class name >:< static data member name >=< value>

6) There are two types of static data members:

<Class Object Name>. <static data member name> or <class type name >:< static data member name>

If the access permission of the static data member is allowed, it is a public member. You can reference the static data member in the program in the preceding format;

6) static data members are mainly used when each object has the same attribute. For example, for a deposit type, the interest of each instance is the same. Therefore, the interest should be set as the static data member of the deposit class. There are two advantages: first, no matter how many deposit-type objects are defined, interest data members share the memory allocated to the global data area, thus saving storage space. Second, once the interest needs to be changed, the interest of all deposit objects will be changed once;

7) compared with global variables, using static data members has two advantages:

  • The static data member does not enter the global namespace of the program, so there is no possibility of conflict with other global names in the program;
  • Information can be hidden. Static data members can be private members, but global variables cannot;
  • Static member functions

Like static data members, we can also create a static member function that serves all the classes rather than specific objects of a class. Static member functions, like static data members, are internal implementation of the class and are part of the class definition. A common member function generally implies a this pointer, which points to the object itself of the class, because a common member function always belongs to a specific object of a class. Generally, this is the default value. For example, the function fn () is actually this-> fn (). However, compared with common functions, static member functions do not have the this pointer because they are not associated with any objects. In this sense, it cannot access non-static data members of class objects or non-static member functions. It can only call other static member functions. The following is an example of a static member function.

 
 
  1. // Example 6
  2. # Include <iostream. h>
  3. Class Myclass
  4. {
  5. Public:
  6. Myclass (int a, int B, int c );
  7. Static void GetSum ();/declare a static member function
  8. Private:
  9. Int a, B, c;
  10. Static int Sum; // declare a static data member
  11. };
  12. Int Myclass: Sum = 0; // defines and initializes static data members.
  13.  
  14. Myclass: Myclass (int a, int B, int c)
  15. {
  16. This-> a =;
  17. This-> B = B;
  18. This-> c = c;
  19. Sum + = a + B + c; // non-static member functions can access static data members.
  20. }
  21.  
  22. Void Myclass: GetSum () // static member function implementation. Note that there is no static
  23. {
  24. // Cout <a <endl; // error code. a is a non-static data member.
  25. Cout <"Sum =" <Sum <endl;
  26. }
  27.  
  28. Void main ()
  29. {
  30. Myclass M (1, 2, 3 );
  31. M. GetSum ();
  32. Myclass N (4,5, 6 );
  33. N. GetSum ();
  34. Myclass: GetSum ();
  35. }

Static member functions can be summarized as follows:

  • The keyword static cannot be specified for function definitions that appear in external classes;
  • Static members can access each other, including static member functions accessing static data members and accessing static member functions;
  • Non-static member functions can access static member functions and static data members at will;
  • Static member functions cannot access non-static member functions and non-static data members;
  • Without the additional overhead of this pointer, static member functions increase slightly compared with global functions of the class;
  • Call static member functions. You can use the member access operator (.) and (->) for a class object or a pointer to a class object to call a static member function, you can also directly use the following format: <Class Name> :: <static member function name> <parameter table>) Call the static member function of the class.

I hope this article will help you.

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.