<Solved>What is mThread?
General and Desktop
2
Posts
2
Posters
909
Views
2
Watching
-
I see in s alot of threading tutorials everyone uses mThread. Is mThread just an arbitrary name that people use, like when people just declare a number as i. Or does it have a predetermined meaning and purpose in Qt?
@cdbean04 said:
Is mThread just an arbitrary name that people use, like when people just declare a number as i.
Yes. I think the "m" prefix is often used to represent "member variable".
You can call your variable anything you want; it won't affect your program (but choosing a good name makes your code easier to understand)