访问类 QList Pointer 的成员
Posted
技术标签:
【中文标题】访问类 QList Pointer 的成员【英文标题】:Accessing members of a class QList Pointer 【发布时间】:2020-06-30 12:48:50 【问题描述】:我有这个项目,我使用QList
来存储名为RespirationTest
的类的实例。使用动态内存时访问RespirationTest
成员很容易,但我遇到了麻烦,因为我将QList
切换为指针
//class declaration
class RespirationTest: public QListWidgetItem
public:
RespirationTest();
~RespirationTest();
public slots:
double GetAmplitude() return _amplitude;
private:
double _amplitude;
问题就在这里,当我尝试访问我的 QList
对象的成员时(曾经在 respTest
是 QList
时工作)
//MainWindow
QList<RespirationTest> * respTests;
respTests = new QList<RespirationTest>;
void MainWindow::on_load_button_clicked()
RespirationTest *currTest = new RespirationTest;
respTests->push_back(*currTest);
qDebug() << "ampl" << i << ": " << respTests[i].GetAmplitude(); // no member named 'GetAmplitude'
【问题讨论】:
【参考方案1】:快速修复:改用.at(int idx)
:
qDebug() << "ampl" << i << ": " << respTests->at(i).GetAmplitude();
使用operator[]
的问题在于你访问的是指针的内存而不是访问底层的QList
:
respTests[i] // returns the QList<> instance at `i` instead
// of a `RespirationTest` object
因此,如果您想继续使用[]
,则需要使用[]
或.at()
进一步访问i
th 元素:
qDebug() << "ampl" << i << ": " << respTests[0].at(i).GetAmplitude();
如果您真的必须这样做,我强烈建议您使用.at()
。否则根本不要使用指针,因为它会使问题过于复杂并且可能会泄漏内存。此外,避免使用QList<>
,而是使用QVector
。
【讨论】:
【参考方案2】:因为respTests
是一个指针,您需要使用->
而不是.
qDebug() << "object at " << i << ": " << respTests->at(i).GetAmplitude();
【讨论】:
respTests[0]->at(i)
不会编译。
@Waqar 嗨,伙计!非常感谢!!!!,我的错,但现在已经编辑和测试了......以上是关于访问类 QList Pointer 的成员的主要内容,如果未能解决你的问题,请参考以下文章
使用自定义类的 Qlist 作为成员序列化一个类(使用 QDataStream)