在QCustomPlot中使用线程

时间:2018-08-01 08:02:22

标签: multithreading qt qcustomplot

我创建了一个带有2个QCustomPlot插件的对话框。 我正在尝试同时绘制它们。

这是我的代码:

setData1(); //set points into widget1, no plotting
setData2(); //set points into widget2, no plotting

std::thread a([this]()->void {ui->widget1->replot();});
std::thread b([this]()->void {ui->widget2->replot();});

a.join();
b.join();

我认为它应该很简单,但是程序没有意外完成

任何想法?

0 个答案:

没有答案