My current understanding is that variables that are created in the constructor of the QThread-derived class will nevertheless be created in the context of the thread that created the instance of such class. For example, in the case below variable "a" is created in the context of main thread, but variable "b" is created in the context of the thread "threadOne". Is my understanding correct?
Bookmarks