Init static data before object creation : Static « Language « C++






Init static data before object creation

Init static data before object creation
#include <iostream>
using namespace std;

class StaticMemberClass {
  static int i;
public:
  static void init(int x) {
     i = x;
  }
  void show() {
     cout << i;
  }
};

int StaticMemberClass::i; // define i

int main()
{
  
  StaticMemberClass::init(100);

  StaticMemberClass x;
  x.show(); 

  return 0;
}


           
       








Related examples in the same category

1.Static function and static variableStatic function and static variable
2.Static function variableStatic function variable
3.Static Member Functions: its strictionsStatic Member Functions: its strictions
4.Static member functions: 'preinitialize' private static dataStatic member functions: 'preinitialize' private static data
5.A static member variable example.A static member variable example.
6.Use a static member variable independent of any object.Use a static member variable independent of any object.
7.A shared resource example.A shared resource example.
8.Usage and effect of a static data memberUsage and effect of a static data member