Qt thread
Introduce
There are two ways to implement thread according to official documentation and the first one is recommended
How to quit a thread correctly
Inherit QObject
workerThread.quit();
workerThread.wait();
Inherit QThread
Thread::Thread()
...
kangaroolove.hashnode.dev1 min read