这是基类中的声明的样子:
protected: void indexAll(); void cleanAll();
在派生类中,以下内容无法编译:
indexAll(); // OK connect(&_timer,&QTimer::timeout,this,&FileIndex::indexAll); // ERROR connect(&_timer,SIGNAL(timeout()),SLOT(indexAll())); // OK
我想使用connect的第一个变种,因为它做了一些编译时间检查.为什么这会返回错误:
error: 'void Files::FileIndex::indexAll()' is protected void FileIndex::indexAll() ^ [...].cpp:246:58: error: within this context connect(&_timer,&FileIndex::indexAll); ^