本文介绍了在vc ++中启动线程的示例演示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图在按钮上单击并启动一个线程,并在线程中调用一个方法,并在MFC的main函数中使用方法的返回值。
char * exampleDlg :: methodname(char * protType)
{
-------
-------
------
-------
返回;
}
i am trying to start a thread on button click and call a method in thread and use the return value of method in the main function in MFC.
char* exampleDlg::methodname(char *protType)
{
-------
-------
------
-------
return;
}
void exampleDlg::Onclick()
{
THREADSTRUCT *_param = new THREADSTRUCT;
_param->_this = this;
AfxBeginThread (StartThread, _param);
}
UINT exampleDlg::StartThread(LPVOID param)
{
methodname();
return k;
_endthread();
}
推荐答案
这篇关于在vc ++中启动线程的示例演示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!