gpt4 book ai didi

c - 将 void 指针与 C 中的类型化指针进行比较(为了相等)是 UB 吗?

转载 作者:行者123 更新时间:2023-12-01 21:26:11 25 4
gpt4 key购买 nike

我有一个类型化指针,typed,它是使用指针算法初始化的,指向数组中的一个对象。我还有一个采用两个指针参数的函数,第一个与上述指针类型相同,第二个是 void *(请参阅代码中的 myfunc()下)。

如果我将 typed 作为第一个参数传递,并将另一个类型与 typed 相同的指针作为第二个参数传递,然后在函数内比较它们是否相等,是未定义的行为?

#include <stdio.h>

typedef struct S {int i; float f;} s;

void myfunc(s * a, void * b)
{
if (a == b) // <-------------------------------- is this UB?
printf("the same\n");
}

int main()
{
s myarray[] = {{7, 7.0}, {3, 3.0}};
s * typed = myarray + 1;
myfunc(typed, &(myarray[0]));

return 0;
}

更新: 好的,所以我在上面发布我的问题一天后回来,有两个很好的答案(感谢@SouravGhosh 和@dbush)。一个比另一个早不到一分钟(!),但从第一个的评论来看,答案最初是错误的,直到第二个答案发布后才得到纠正。我接受哪一个?在这种情况下,是否有接受一个答案而不是另一个答案的协议(protocol)?

最佳答案

不,这不是未定义的行为。这是允许的,并在相等运算符约束的规范中明确定义。引用 C11,第 6.5.9 章

one operand is a pointer to an object type and the other is a pointer to a qualified or unqualified version of void;

来自同一章的第5段

[...] If one operand is a pointer to an object type and the other is a pointer to a qualified or unqualified version of void, the former is converted to the type of the latter.

关于c - 将 void 指针与 C 中的类型化指针进行比较(为了相等)是 UB 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63157214/

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