多线程简单例子

#include <Windows.h>
#include <process.h>
#include <stdio.h>
#include <stdlib.h>
void acceptThread(void *)
{
    for(int j = 0 ;j < 4 ;j ++)
    {
        Sleep(100);
        printf("this is the second thread !\n");
    }
}
int main()
{
    _beginthread(acceptThread ,NULL ,0);
    for(int j = 0 ;j < 4 ;j ++)
    {
        Sleep(200);
        printf("this is the first thread !\n");
    }
    return 0;
}

你可能感兴趣的:(多线程简单例子)