程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++類靜態成員變量和const常量的初始化方法

C++類靜態成員變量和const常量的初始化方法

編輯:C++入門知識

C++類靜態成員變量和const常量在定義類的時候就必須初始化,否則都會編譯出錯。


而具初始化方法為:

 


C++類靜態成員變量初始化方法

 

 #include <iostream>  
#include <string>  
#include <cstdio>  
#include <cstring>  
       
using namespace std; 
class A{ 
public: 
     static void fun() 
     { 
          ab = 2; 
          cout << ab << endl; 
      } 
private: 
     static int ab; 
}; 
 
int A::ab = 10//在此初始化  
 
int main(int argc, char *argv[]) 
{ 
     A::fun(); 
     return 0; 
} 

#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
     
using namespace std;
class A{
public:
     static void fun()
     {
          ab = 2;
          cout << ab << endl;
      }
private:
     static int ab;
};

int A::ab = 10//在此初始化

int main(int argc, char *argv[])
{
     A::fun();
     return 0;
}


C++類const常量初始化方法:

 

#include <iostream>  
#include <string>  
#include <cstdio>  
#include <cstring>  
       
using namespace std; 
class A{ 
public: 
     A:ab(10)//在此初始化ab  
     { ;} 
     static void fun() 
     { 
          ab = 2; 
          cout << ab << endl; 
      } 
const int ab; 
 
}; 

#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
     
using namespace std;
class A{
public:
     A:ab(10)//在此初始化ab
     { ;}
     static void fun()
     {
          ab = 2;
          cout << ab << endl;
      }
const int ab;

};

 

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved