は、メインスレッドがそれから作成されるすべてのスレッドを待つように強制する方法です。プログラムを終了する前にジョブを終了します。私は意味:メインスレッドが他のすべてのQthreadが完了するまで待ちます。
int main(){
QthreadClass a; // in cons' a thread is created and running
QthreadClass b; // same as before
*** wish to wait till both created thread finished their jobs ***
return 0;
}
+1私はあなたが私にそれを打つとき、私はこれを書いている過程にいました。 [Qthread :: waitのドキュメントはこちらです。](http://qt-project.org/doc/qt-4.8/qthread.html#wait) – tmpearce
@tmpearceごめんなさい。:)そして、Qt docsは、まず見てください。 – Archie