有一个名为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
类型的东西。为什么呢?
答案 0 :(得分:1)
QSharedPointer
基本上包裹你的指针。因此,您无法直接使用'。'访问运算符,这就是您收到此错误的原因:getTitle
不属于类QSharedPointer
。
但是,您有多种方法可以检索实际指针:
data
:不是最简单的方式,但它是明确的,有时很重要operator->
:所以您可以像QSharedPointer
一样使用实际指针m_noteList[i]->getTitle();
operator*
:执行(*m_noteList[i]).getTitle();