gpt4 book ai didi

c 程序中的编译器错误 :indirection on type void*

转载 作者:行者123 更新时间:2023-12-02 07:53:43 25 4
gpt4 key购买 nike

void main()
{
void *v;
int integer=2;
int *i=&integer;
v=i;
printf("%d",(int*)*v);
}

这个简单的程序会导致编译器错误:

Compiler Error. We cannot apply indirection on type void*

这个错误具体是什么意思?

最佳答案

错误的意思正是它所说的。该错误是由代码中使用的 *v 子表达式触发的。

C 中的一元运算符* 通常称为间接 运算符或解引用 运算符。在这种情况下,编译器告诉您将一元 * 应用于 void * 类型的指针是非法的。

关于c 程序中的编译器错误 :indirection on type void*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2160233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com