我想了解pthreads,並且正在編譯我在網上找到的程序。瞭解pthread的難點
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello World! It's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
long t;
for(t=0;t<NUM_THREADS;t++){
printf("In main: creating thread %ld\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc){
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
/* Last thing that main() should do */
pthread_exit(NULL);
}
所以我無法理解PrintHello函數的語法。
1)「* PrintHello」函數名稱就像o指針(因爲星號)?
2)函數的參數是一個沒有類型的指針嗎?所以......甚至不是指針?
3)我們怎樣才能將變量的虛空類型變成長整型?
我們無法構建更簡單的函數並將其傳遞到線程中嗎?
4)最後,在pthread函數中,(void *)t參數是什麼意思? :O
非常感謝你們!
你確實是知道指針如何申報?你*知道泛型指針'void *'?現在再看一下'PrintHello'函數聲明。如果你*不知道通用指針,現在是時候去你最喜歡的搜索引擎,並做一些搜索。 –