0
我想理解爲什麼我得到這個答案,而我在線程中運行此代碼。 我不明白爲什麼我沒有得到不同的我每次價值。 多線程打印值在一起
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NUM_THREADS 5
void *printHello(void *threadid)
{
int tid = *(int*)threadid;
printf("Hello World! It's me, thread #%d!\n", tid);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
int i;
for (i = 0; i < NUM_THREADS; i++)
{
printf("In main: creating thread %ld\n", i,);
rc = pthread_create(&threads[i], NULL, printHello, &i);
if (rc)
{
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
pthread_exit(NULL);
}
做所有的線程等待,直到他們完成創建他們,然後他們去printHello功能?
謝謝。這是明確的答案 –