我正在尝试编写一小段代码,使使用 CreateThread() 看起来更简洁。我不能说我真的打算使用它,但我认为对于像我这样的新程序员来说,这将是一个有趣的小项目。这是我到目前为止所拥有的:
#include <iostream>
#include <windows.h>
using namespace std;
void _noarg_thread_create( void(*f)() )
{
cout << "Thread created...\n" << endl;
Sleep(10);
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)f, NULL, 0, NULL);
}
template <typename T>
void _arg_thread_create( void(*f)(T), T* parameter)
{
cout << "Thread created...\n" << endl;
Sleep(10);
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)*f, parameter, 0, NULL);
}
void printnums(int x)
{
for(int i = x; i < 100; i++)
{
cout << i << endl;
}
}
void printnumsnoarg()
{
for(int i = 0; i < 100; i++)
{
cout << i << endl;
}
}
int main()
{
cin.get();
_noarg_thread_create( &printnumsnoarg );
cin.get();
int x = 14;
_arg_thread_create( &printnums, &x );
cin.get();
}
基本上,我有两个函数将为 CreateThread 调用两个不同的预设:一个用于线程中需要参数时,一个用于线程中不需要参数时。我可以用 g++ 编译器(cygwin)编译它,它运行没有任何错误。第一个线程被正确创建并按预期打印出数字 0-99。但是,第二个线程不会打印出任何数字(使用此代码,它应该打印 14-99)。我的输出如下所示:
<start of output>
$ ./a.exe
Thread created...
0
1
2
3
.
.
.
97
98
99
Thread Created...
<end of output>
任何想法为什么第二个线程不能正常工作?