The qt documentation for QThread, it says to create a class from QThread, and to implement the run method. Below is taken from the 4.7 Qthread documentation...

To create your own threads, subclass QThread and reimplement run(). For example: 

 class MyThread : public QThread
 {
 public:
     void run();
 };

 void MyThread::run()
 {
     QTcpSocket socket;
     // connect QTcpSocket's signals somewhere meaningful
     ...
     socket.connectToHost(hostName, portNumber);
     exec();
 }

So in every single thread I've created, I've done just that and for most things it works just fine (I do not implement moveToThread(this) in any of my objects and it works great).

I hit a snag last week (managed to get through it by working around where I created my objects) and found the following blog post. Here is basically says that subclassing QThread really isn't the correct way to do it (and that the documentation is incorrect).

This is coming from a Qt developer... so at first glance I was interested and upon further reflection, agree with him. Following OO principles, you really only want to subclass a class to further enhance that class... not to just use the classes methods directly... thats why you instantiate...

Lets say I wanted to move a custom QObject class to a thread... what would be the 'correct' way of doing it? In that blog post, he 'says' he has an example somewhere... but if someone could further explain it to me... I'd be greatly appreciated!

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

About the only thing I can think of to add is to further state that QObjects have an affinity with a single thread. This is usually the thread that creates the QObject. So if you create a QObject in the app's main thread and want to use it in another thread, you need to use moveToThread() to change the affinity.

This saves having to subclass QThread and creating your objects in the run() method, thus keeping your stuff nicely encapsulated.

That blog post does include a link to an example. It is pretty short but it shows the basic idea. Create your QObjects, connect your signals, create your QThread, move your QObjects to the QThread and start the thread. The signal/slot mechanisms will ensure that thread boundaries are crossed properly and safely.

You may have to introduce synchronization if you have to call methods on your object outside of that mechanism.

I know Qt has some other nice threading facilities beyond threads that are probably worth getting familiar with but I have yet to do so :)

link|improve this answer
the linked example also says that they do subclass QThread and implement run() to do an exec(). This will basically start the event loop and enable the connections to do their thing... From what I gather, you shouldn't need to do that (from the original post I listed) or am I misunderstanding and you will still need to do this? – g19fanatic Nov 4 '10 at 3:04
1  
You understand correctly. As of Qt 4.4, the default implementation of run() does this for you. – Arnold Spence Nov 4 '10 at 3:08
Thanks for your help! – g19fanatic Nov 4 '10 at 3:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.