#include <iostream>
#include <cstring>
#include <QString>
using namespace std;
class A {
public:
static const int i = 9;
static const int PI = 1.3;
static const char ch = 's';
static const string str = "hello world"; // <--- error
static const QString str2 = "hello world"; // <--- error
};
int main(int argc, char **argv) {
cout << "Hello world" << endl;
return 0 ;
}
由於代碼提供了一切,我如何初始化字符串。字符串上的C++靜態屬性初始化錯誤
該問題已經回答,但只是在下一次:說出什麼錯誤得到確切。 – 2012-03-24 12:54:14
@MrLister現在工作正常。但是我想知道const如何在以後被宣佈! – Dewsworld 2012-03-24 13:09:49