- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想报告一个针对 Clang 和 GCC 的错误,因为同一功能接受多个不兼容的原型(prototype)。
考虑以下示例:
$ clang -vUbuntu clang version 3.4-1ubuntu3 (tags/RELEASE_34/final) (based on LLVM 3.4)Target: x86_64-pc-linux-gnu…$ gcc -v…gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) $ cat t1.cint f(void);float f(void);$ gcc -c t1.ct1.c:3:7: error: conflicting types for ‘f’ float f(void); ^t1.c:1:5: note: previous declaration of ‘f’ was here int f(void); ^$ clang -c t1.ct1.c:3:7: error: conflicting types for 'f'float f(void); ^t1.c:1:5: note: previous declaration is hereint f(void); ^1 error generated.
Both GCC and Clang conform to what I am going to call the “expected behavior”.However, if f
is set to return an enum
or an unsigned int
:
$ cat t2.c
typedef enum { m1 } t ;
t f();
unsigned int f();
$ gcc -c t2.c
$ clang -c t.c
当 f
的两个单独声明中的返回类型是简单的 enum
和 unsigned int
时,GCC 和 Clang 都不会发出诊断信息.我想将此行为报告为错误。在 C11 标准中,条款 6.2.7:2 使两个程序 t1.c 和 t2.c 出现以上未定义行为:
6.2.7:2 All declarations that refer to the same object or function shall have compatible type; otherwise, the behavior is undefined.
但是,6.2.7:2 不在 Constraints 部分内,因此允许两个编译器对这些未定义的行为做他们想做的事,包括静默接受它们。是否有任何其他条款可以在像 t2.c 这样的程序中强制执行诊断,并且可以正确地将缺少诊断报告为编译器错误?或者我可能错误地期望枚举类型与 unsigned int
不兼容?
最佳答案
我在写上面问题的最后一句话时找到了答案:
t2.c 中没有未定义的行为。每个枚举类型都与编译器选择的一种普通整数类型兼容。在示例 t2.c 中,GCC 和 Clang 都选择了 unsigned int
与 enum
兼容类型定义为 t
.
6.7.2.2:4 Each enumerated type shall be compatible with char, a signed integer type, or an unsigned integer type. The choice of type is implementation-defined,128 but shall be capable of representing the values of all the members of the enumeration […]
128) An implementation may delay the choice of which integer type until all enumeration constants have been seen.
关于c - Clang、GCC 接受相同功能的不同原型(prototype),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27290702/
以下代码,我使用 chrome 浏览器控制台进行了检查: function A(){ this.a='a' } 这是一个构造函数。我已经将一个属性 b 赋给了 A 的原型(prototype)。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 5年前关闭。 Improve this
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 3年前关闭。 Improve this
我已经开始阅读 The Pragmatic Programmer,我很喜欢并学习堆形式,但我很难理解示踪子弹和原型(prototype)之间的区别。跟踪项目符号是否像拥有应用程序的所有 View 但尚
尽管阅读了 StackOverflow 上的大多数文章,但我现在实际上对原型(prototype)非常困惑。 function Foo() { } Foo.prototype.speak = func
我正在阅读以下代码,并开始想知道 Rectangle.prototype = Object.create(Shape.prototype) 和 Rectangle.prototype = Shape.
我想知道它们之间的区别: childObj.prototype = Object.create(parentObj.prototype) 和 childObj.prototype = parentOb
这个问题在这里已经有了答案: Why wouldn't I use Child.prototype = Parent.Prototype rather than Child.prototype =
在 node.js 中导出原型(prototype)的首选方法是什么?您可以采用两种方法: 导出原型(prototype)本身 function A () { } module.exports = A
我正在学习 JavaScript,发现了两种分配原型(prototype)的方法。 第一个是A.prototype = B.prototype,第二个是A.prototype = new B() 例如
在一些构造函数的定义之后,例如 child ,我见过以下两种形式: Child.prototype = Parent.prototype; 或 Child.prototype = new Parent
我正在阅读一本关于 OOP javascript 的书,但被其中一个示例卡住了。 在示例代码的第一个版本中,Shape 的一个新实例构造函数被创建并且 toString方法被调用。 toString方
这个问题在这里已经有了答案: What should I connect to the child prototype property in JavaScript (2 个答案) 关闭 8 年前。
在进行原型(prototype)设计时,您在多大程度上放弃了最佳实践来支持代码和修复黑客攻击?当然,代码并不打算在完整的生产环境中保留。 补充:我正在研究一个用 Python 制作的相当大的半工作原型
我正在尝试使用 Prototype 更新隐藏表单字段的值。表单域: 我正在尝试使用原型(prototype)更新值: var additionalVal = ',2'; var itemId = $
我正在阅读How to Make a Javascript Library我发现了作者所说的一个观点: function _() { //Some obects and var
我想用一个新函数扩展“Number”类型,因此我必须定义一个原型(prototype)。当我想到这一点时,我得到了一堆问题: Number 是否既继承了 Object.prototype 又继承了 F
这里好像有区别... 假设我们有 function MyConstructor() {} MyConstructor 的[[Prototype]] 是Function.prototype,不是 MyC
有人建议 Derived.prototype = Object.create(Base.prototype); 优于 Derived.prototype = new Base(); (如 this S
我是一名优秀的程序员,十分优秀!