槽我想知道如果它是可能的(以及如何)使用C++運算符,例如(),[]爲Qt的槽。用C++運營商爲Qt中
看來,編譯器抱怨這個簡單的代碼
class MainWindowDecorator : public QObject
{ Q_OBJECT
private:
//some variables
public slots:
int operator[](int i)
{
return i;
}
}
的錯誤是:
Error: Not a signal or slot declaration
只是好奇,有什麼抱怨嗎?在QtCreator中我沒有得到:S –
是的,錯誤的文字是什麼? – sashoalm
與錯誤 – linello