Multithreaded programming review the Windows thread function must be a global function or a static function

Source: Internet
Author: User

Call CreateThread (...) To specify the entry function of the created thread when the thread is created, this entry function can only be a global function or a static member function of a class.

The global function is easy to understand, but if the member function of the class must be a static member function, why,

Because a non-static member function of a class can only be called through the object of the class, but when the thread is created, it can get the object of the class and call the class's member function?

The static member function classes of the class are all, not exclusive to any one object of the class, so objects that do not create classes can also be called.

Global function Format:
DWORD WINAPI procname (lpvoid Lppara) {
}
The static function format of the class:

Static DWORD WINAPI procname (LPVOID Lppara);

Multithreaded programming review the Windows thread function must be a global function or a static function

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.