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

C++中類const、static、static const成員變量

編輯:C++入門知識

C++中類const、static、static const成員變量


#include
using namespace std;


class Test
{
private:
const int a; //const 成員變量只能在構造函數的成員初始化列表中初始化,不能在函數體中和其他地方
static int b; //static 成員變量需要在全局范圍內初始化,格式: 類型名 類名::變量名 = 值
static const int c;//static const 成員變量需要在全局范圍內初始化,格式:類型名 類名::變量名 = 值
public:
Test() :a(1){} //正確
//Test(){a = 1;} //錯誤
int get_a()
{
return a;
}
int get_b()
{
return b;
}
int get_c()
{
return c;
}
};
int Test::b = 2;
const int Test::c = 3;
int main()
{
//int Test::b = 2; 錯誤
//const int Test::c = 3; 錯誤
Test temp;
cout << temp.get_a() << endl << temp.get_b() << endl << temp.get_c() << endl;


cin.get();
return 0;
}

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