Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードが機能します。
connect(ui.pushButton, SIGNAL(clicked()), this, SLOT(myMemberFunction()));
その他はしません:
connect(ui.pushButton, SIGNAL(clicked()), this, SLOT(this->myMemberFunction()));
なんで?
SLOT() マクロは、スロットを提供するために (関数ポインターとして) 呼び出すことができる関数を書き込みます。これは引数を名前として使用します。それ自体は関数呼び出しではありません。