0

我被指向 const 的指针卡住了QList of pointers to Foo。我将指针myListOfFooBar对象传递到Qux. 我使用指向 const 的指针来防止在Bar类之外进行任何更改。问题是我仍然可以ID_修改setIDQux::test().

#include <QtCore/QCoreApplication>
#include <QList>
#include <iostream>

using namespace std;

class Foo
{
private:
    int      ID_;
public:
    Foo(){ID_ = -1; };
    void setID(int ID) {ID_ = ID; };
    int  getID() const {return ID_; };
    void setID(int ID) const {cout << "no change" << endl; };
};

class Bar
{
private:
    QList<Foo*>  *myListOfFoo_;
public:
    Bar();
    QList<Foo*> const * getMyListOfFoo() {return myListOfFoo_;};
};

Bar::Bar()
{
    this->myListOfFoo_ = new QList<Foo*>;
    this->myListOfFoo_->append(new Foo);
}

class Qux
{
private:
    Bar *myBar_;
    QList<Foo*> const* listOfFoo;
public:
    Qux() {myBar_ = new Bar;};
    void test();
};

void Qux::test()
{
    this->listOfFoo = this->myBar_->getMyListOfFoo();
    cout << this->listOfFoo->last()->getID() << endl;
    this->listOfFoo->last()->setID(100); //           **<---- MY PROBLEM**
    cout << this->listOfFoo->last()->getID() << endl;
}

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    Qux myQux;
    myQux.test();

    return a.exec();
}

上面代码的结果是:

-1
100

我想要实现的是:

-1
no change
-1

QList<Foo>当我使用代替时没有这样的问题,QList<Foo*>但我需要QList<Foo*>在我的代码中使用。

感谢帮助。

4

3 回答 3

1

应该:

QList<const Foo *>* listOfFoo;
于 2010-10-12T13:18:42.747 回答
1

您可以使用 aQList<Foo const *> const *这意味着您不允许修改列表或列表的内容。问题是没有简单的方法可以从 a 中检索该列表QList<Foo*>,因此您需要将其添加到您的Bar类中。

于 2010-10-12T13:19:29.893 回答
0

如果您确实必须返回指针,请将其转换为包含指向常量元素的指针的 QList:

QList<const Foo*> const* getMyListOfFoo() 
{return reinterpret_cast<QList<const Foo*> *>(myListOfFoo_);};

在 Qux listOfFoo 中也应该包含指向常量元素的指针:

QList<const Foo*> const* listOfFoo;
于 2010-10-15T09:05:17.483 回答