pthread_create invalid conversion from int to void*
时间: 2023-08-24 20:13:05 浏览: 236
linux创建线程之pthread_create的具体使用
这个问题可能是因为 `pthread_create` 函数的第三个参数需要传入一个 `void*` 类型的指针,但是你传入了一个 `int` 类型的值。
解决方法是将 `int` 类型的值转换成 `void*` 类型,然后再传入函数中。可以使用 C 语言中的类型转换操作符 `(void*)`,如下所示:
```
int arg = 123;
pthread_create(&thread_id, NULL, my_thread_function, (void*)arg);
```
在线程函数中,需要将参数再转换回 `int` 类型,如下所示:
```
void* my_thread_function(void* arg) {
int my_arg = (int)arg;
// do something with my_arg
}
```
注意,这种方法只适用于传递简单类型的参数,如果需要传递复杂的数据结构,建议使用指针。
阅读全文