访问QList和QSharedPointer中的引用元素

时间:2014-02-23 13:03:04

标签: c++ qt qt5 qlist qsharedpointer

有一个名为m_noteList的QList成员变量,其中包含类Note的QSharedPointer元素。

private: 
   QList< QSharedPointer<Note> > m_noteList; 

如果创建了新注释,则其引用将附加到列表中:

void Traymenu::newNote(){
    QSharedPointer<Note> note(new Note(this));
    m_noteList << note;
}

对于每个Note-element,哪些指针在m_noteList中,我想得到它的标题并将其添加到我的contextmenu中。目的是点击该标题打开注释:

for ( int i = 0 ; i < m_noteList.count() ; i++ ) {
    std::string menuEntryName = m_noteList[i].getTitle();
    QAction *openNote = m_mainContextMenu.addAction(menuEntryName);
}

我收到错误

C:\project\traymenu.cpp:43: Fehler: 'class QSharedPointer<Note>' has no member named 'getTitle'
     std::string menuEntryName = &m_noteList[i].getTitle();
                                                ^

基本上我想访问m_noteList中引用的对象。我怎么做?我想m_noteList[i]可以访问该元素,但显然编译器需要QSharedPointer类型的东西。为什么呢?

1 个答案:

答案 0 :(得分:1)

QSharedPointer基本上包裹你的指针。因此,您无法直接使用'。'访问运算符,这就是您收到此错误的原因:getTitle不属于类QSharedPointer

但是,您有多种方法可以检索实际指针:

  1. data:不是最简单的方式,但它是明确的,有时很重要
  2. operator->:所以您可以像QSharedPointer一样使用实际指针m_noteList[i]->getTitle();
  3. operator*:执行(*m_noteList[i]).getTitle();
  4. 之类的操作