2012-02-28 113 views
1

对于以下的代码:初始化从数据文件中的静态const成员

class A 
{ 
public: 
static const int VAL; 
}; 

我知道我可以分配VAL在类声明的值:

class A 
{ 
public: 
static const int VAL = 3; 
}; 

或在CPP文件:

const int A::VAL = 3; 

但我想从数据文件中读取值。我有一个功能,现在,让我们称之为F(),读出此值,我想:

void F() 
{ 
int value = ReadValueFromDataFile(); 

//But I can't do this: 
const int A::VAL = value; //member cannot be defined in the current scope 
} 

我如何分配VAL的值根据从数据文件中读取值?

+0

就像在第二个例子中一样,它只适用于整型(非std :: string)。 – 2012-02-28 22:19:19

回答

3

在它们的定义中(而不是它们的声明)用函数调用的返回值初始化变量。

#include <fstream> 
#include <iostream> 

class A 
{ 
public: 
static const int VAL1; 
static const int VAL2; 
}; 

int F(const char*); 

// If you need to separate .H from .CPP, put the lines above 
// in the .H, and the lines below in a .CPP 

const int A::VAL1 = F("1.txt"); 
const int A::VAL2 = F("2.txt"); 

int F(const char* filename) 
{ 
    std::ifstream file(filename); 
    int result = 0; 
    file >> result; 
    return result; 
} 

int main() { 
    std::cout << A::VAL1 << " " << A::VAL2 << "\n"; 
} 
+2

只要注意初始化顺序问题。 – 2012-02-28 22:56:29