在cpp文件中初始化私有静态成员变量。错误:成员是私人的

时间:2015-03-14 16:50:58

标签: c++ static initialization private

这是一个简单的例子来说明我的问题。

IDGenerator.hpp

#ifndef IDGENERATOR_HPP_
#define IDGENERATOR_HPP_

class IDGenerator {

   private:
      static int s_nNextID;

      // make the IDGenerator class a static class with a private default constructor
      IDGenerator();

   public:
      static int GetNextID();

};

#endif

IDGenerator.cpp

#include "IDGenerator.hpp"

// initialize the static id
int IDGenerator::s_nNextID(1);

int GetNextID()
{
   return IDGenerator::s_nNextID++;
}

我已经尝试显式初始化(​​int IDGenerator :: s_nNextID = 1;)并隐式地如图所示。 这是编译命令和错误

g++ -c IDGenerator.cpp
IDGenerator.cpp: In function ‘int GetNextID()’:
IDGenerator.cpp:11:5: error: ‘int IDGenerator::s_nNextID’ is private
 int IDGenerator::s_nNextID(1);
     ^
IDGenerator.cpp:15:22: error: within this context
  return IDGenerator::s_nNextID++;

我也尝试使用-Wall和std = gnu ++ 11进行编译。同样的错误

2 个答案:

答案 0 :(得分:3)

错误与初始化无关。它只是将初始化指向s_nNextID来自的点。

真正的错误在第15行,您可以从正常的全局函数访问s_nNextID,因为您忘记了IDGenerator::的定义标题中的GetNextID

答案 1 :(得分:0)

s_nNextID是私有的,所以你不能像这样访问它。您需要使GetNextID成为IDGenerator类的成员。