C ++ - 全局变量范围

时间:2014-04-23 00:17:15

标签: c++ class oop variables scope

我有一些任务:有很多.cpp文件,所以我必须在每个文件中找到全局变量的所有声明。例如,我有这部分代码:

class word {
public:
    word(string code0, string text0, int weight0) : code(code0), text(text0),
    weight(weight0), index(word::num) {};
    friend bool operator<(word w1, word w2);
    friend ostream &operator<<(ostream &stream, word w);
    friend bool wordWithCode::operator()(const word &w);
    static bool convertChars(char *inp, char *out);
    inline bool checkCode(char *check) { return !strcmp(code.c_str(),check); };
    inline const char* getText() { return text.c_str(); };
    inline void useIt(set< word >::iterator &i) {
        cout << this->text;
        if (code[0]!='1') {
            word::num++;
            word::words.insert(word(this->code,this->text,this->weight+1));
            word::words.erase(i);
        }
        return;
    };
    static set< word > words;
    string code;
    string text;
    int weight;
    static int num;
private:
    int index;
};

int word::num = 0;
set< word > word::words;

int main(){
    ...
    return 0;
}

所以我的问题:静态变量word :: num和word :: words是全局的吗?以及如何正确识别他们的名字(只是&#34; num&#34;或&#34; word :: num&#34;)?

1 个答案:

答案 0 :(得分:1)

是的,它们是单个全局变量,您可以在单词的函数之外引用它们word::numword::words。在单词的函数中,您可以像numwords

一样引用它们