可能重复:
取消引用 void 指针
我有一个这样的函数调用:
void foo(void *context) //function prototype
..
..
..
main()
{
.
.
foo(&(ptr->block)); //where ptr->block is of type integer.
.
.
.
void foo(void *context)
{
Here I try to use the ptr->block but am having problems. I have tried
if((int *)context ==1)
..
..
}
我在函数中将它类型转换回 int 以使用它。我在 foo() 函数中取消引用它是否错误?