Я застрял с указателем на const QList of pointers to Foo
.Я передаю указатель на myListOfFoo
с Bar
объекта на Qux
.Я использую указатель на const, чтобы предотвратить внесение каких-либо изменений вне класса Bar
.Проблема в том, что я все еще могу изменить ID_
выполнение setID
в Qux::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*>
в моем коде.Спасибо за помощь.