IntelliSense:对象具有与成员函数不兼容的类型限定符

时间:2012-10-27 20:10:11

标签: c++ visual-studio-2010

我有一个名为Person的课程:

class Person {
    string name;
    long score;
public:
    Person(string name="", long score=0);
    void setName(string name);
    void setScore(long score);
    string getName();
    long getScore();
};

在另一堂课中,我有这个方法:

void print() const {
     for (int i=0; i< nPlayers; i++)
        cout << "#" << i << ": " << people[i].getScore()//people is an array of person objects
    << " " << people[i].getName() << endl;
}

这是人们的声明:

    static const int size=8; 
    Person people[size]; 

当我尝试编译它时,我收到此错误:

IntelliSense: the object has type qualifiers that are not compatible with the member function

在打印方法中<2>人[i] 下面有红线

我做错了什么?

1 个答案:

答案 0 :(得分:23)

getName不是const,getScore不是const,而是print。将前两个const设为print。您不能使用const对象调用非const方法。由于您的Person对象是您的其他类的直接成员,并且因为您使用const方法,因此它们被视为const。

一般来说,你应该考虑你编写的每个方法,并将其声明为const,如果它是这样的话。像getScoregetName这样的简单getter应始终为const。