12,964
回編集
607行目: | 607行目: | ||
void MainWindow::onBtnClicked() | void MainWindow::onBtnClicked() | ||
{ | { | ||
//-> マルチスレッド開始 | |||
QEventLoop eventLoop; | QEventLoop eventLoop; | ||
QtConcurrent::run([this, &eventLoop]() | QtConcurrent::run([this, &eventLoop]() | ||
{ | { | ||
heavyFunction(); // 時間の掛かる処理 | |||
eventLoop.quit(); | eventLoop.quit(); | ||
}); | }); | ||
eventLoop.exec(); | eventLoop.exec(); | ||
//<- マルチスレッド終了 | |||
return; | return; | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |