关于C++11静态成员变量的类内初始化

  • Post author:
  • Post category:其他




关于C++11静态成员变量的类内初始化

先放测试后得到的结论,如下表所示。

静态成员变量类型 是否可以类内初始化

static int
不可以
static const int 可以

static const float
不可以
static constexpr int 必须

总的来说,只有在以下两种情况下,静态成员变量才可以在类内初始化。


  • 使用const修饰的静态整型变量

    :比如

    static const int | char | long

    等。

  • 使用constexpr修饰的所有静态变量

    :比如

    static constexpr int | float | double

    等。



注:第二种类型的变量必须在类内进行初始化。


此外,非静态成员变量不能用constexpr修饰。

测试代码如下:

class ConstTest {
public:
    /*
    	报错: ISO C++ forbids in-class initialization of non-const static member 'ConstTest::a' 
    	解释: 非常量静态成员不能在类内初始化
    */
    static int a = 1;      				// true
    
    /*
    	报错: 'constexpr' needed for in-class initialization of static data member 'float ConstTest::b' of non-integral type
    	解释: 非整形类型的静态数据成员若要在类内初始化, 必须加上关键字constexpr
    */
    static float 	   b = 0.1;       	// false
    static const float c = 0.1;    		// false
    
    /*
    	报错: 'constexpr' static data member 'd' must have an initializer
    	解释: constexpr静态数据成员必须要在类内初始化
    */
    static constexpr float d;			// false
    
    static const int e = 1;        		// true
    static constexpr int f = 1;			// true
    static constexpr float g = 0.1;		// true
    static const int h;					// true
};

const int ConstTest::h = 1;



版权声明:本文为Azahaxia原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。