在子线程中调用主线程的函数,函数中有更改变量的操作,就出现了这个问题:cannot create children for a parent that is in a different thread. 原因:在 QT 中,当使用多线程时,只要有更改主线程变量的操作,都会出现该问题。解决这个问题的标准方法是使用信号和插槽。 参考链接: https://stackoverflow.com/questions/3268073/qobject-cannot-create-children-for-a-parent-that-is-in-a-different-thread
但是,子线程如果传一个对象给主线程呢?信号只能发送 int 和 str 类型的数据。