指向同一对象的指针何时相等?

前端之家收集整理的这篇文章主要介绍了指向同一对象的指针何时相等?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对于指向同一对象或函数的两个指针a和b,在哪种情况下C标准保证a == b?当a和b指向同一个对象时,是否有任何平台可以保持!= b?

解决方法

根据C标准(6.5.9平等操作符来自N1548委员会草案 – 2010年12月2日ISO / IEC 9899:201x)

6 Two pointers compare equal if and only if both are null pointers,
both are pointers to the same object (including a pointer to an object
and a subobject at its beginning) or function,both are pointers to one past the last element of the same array object,or one is a pointer to one past the end of one array object and the other is a pointer to the start of a different array object that happens to immediately follow the first array object in the address space.109)

原文链接:https://www.f2er.com/c/113430.html

猜你在找的C&C++相关文章