What is the correct way to initialize static data members in C++ (98, 11 and 14)

谁都会走 提交于 2019-12-18 11:02:46

问题


What is the right way to initialize static data members in C++? I'm also interested in how it has changed from C++98, to C++11 to C++14.

Here is an example:

// bufferedOutput.h
class BufferedOutput
{
 // Static member declaration.
 static long bytecount;
};

// bufferedOutput.cpp
long BufferedOutput::bytecount = 50;

Are there other ways to initialize static data members?


回答1:


The rules have always been as follows:

  • A const static data member (SDM) of integral or enumeration type can be initialised in class with a constant expression.

  • A constexpr SDM must be initialised in class with a constant expression.

    C++17 no longer requires an initializer when the default constructor initialises every member. Also, constexpr SDMs are implicitly inline variables, which makes their declaration a definition (external definitions are now deprecated).

  • Other kinds of SDMs can have an initializer at their definition (which is in class if that SDM is declared inline).

Nothing has substantially changed between C++03 and C++11+ for code that is valid in both languages.

Note that for SDMs that are not inline, the in-class declaration is not a definition—regardless of whether an initializer is provided—and they must be defined if they are odr-used.

As of C++17, we can make your SDM inline, which makes its in-class declaration a definition:

class BufferedOutput
{
  static inline long bytecount = 50;
};


来源:https://stackoverflow.com/questions/26648817/what-is-the-correct-way-to-initialize-static-data-members-in-c-98-11-and-14

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!