类型转换整数为void *

时间:2013-04-15 13:49:49

标签: c linux pointers pthreads void-pointers

#include <stdio.h>
void pass(void* );
int main()
{
    int x;
    x = 10;
    pass((void*)x);
    return 0;
}
void pass(void* x)
{
   int y = (int)x;
   printf("%d\n", y);
}


output: 10

我的问题来自上面的代码..

  1. 当我们将普通变量强制转换为void *或任何指针变量时会发生什么?

  2. 我们必须将变量的地址传递给函数,因为函数定义参数是指针变量。但是这段代码传递了正常变量..

  3. 这种格式在linux pthread编程中遵循......我是一个入门级的C程序员。我在linux gcc编译器中编译这个程序..

3 个答案:

答案 0 :(得分:6)

我只是在这里猜测,但我认为你应该做的实际上是将变量的地址传递给函数。您使用地址运算符&来执行此操作

int x = 10;
void *pointer = &x;

在函数中,通过使用解除引用运算符*获取指针的值:

int y = *((int *) pointer);

答案 1 :(得分:0)

请阅读why glib提供此类转换的宏,此处无需重复此处。重点是:指针具有平台相关的大小。

答案 2 :(得分:0)

如果您打算使用pthreads,并且计划将pass功能传递给pthread_create,则必须malloc / free参数你打算使用(即使线程函数只需要一个int)。

使用整数地址(如&x)可能是错误的,实际上您将在x上执行的每个修改都会影响pass行为。