Simple example of write callback function in C + + class __jquery

Source: Internet
Author: User

/*c++ class function to do callback function * *
* * Here is only a demo/
#include
#include
Class Cfun_callback
{
Static DWORD WINAPI Cbfun (void * p);
Public
Cfun_callback ();
~cfun_callback ();
Private
int a;//
};
DWORD WINAPI Cfun_callback::cbfun (void* p)
{
int A is wrong to write, static functions cannot access non-static members
if (P==null) return 0;
((Cfun_callback *) p)->a=100;
printf ("Static function calls Non-static member:%d\n", ((Cfun_callback *) p)->a);
printf ("The thread starts running \ n");
return 0;
}
Cfun_callback::cfun_callback ()
{
HANDLE handle= CreateThread (null,0,cbfun,this,0,null);
CloseHandle (handle);
}
Cfun_callback::~cfun_callback ()
{
}
int main (char*)
{
Cfun_callback MYCB;
Sleep (a);//waiting
return 0;
}
Turn from: http://www.thirty.name/cpp-class-callback-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.