- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我读了this关于 GCC 的官方手册。有时我在翻译文本时遇到问题。在第 6 页(第 2.1 章)我无法理解这样的文本片段:
The ISO C standard defines (in clause 4) two classes of conforming implementation. A conforming hosted implementation supports the whole standard including all the library facilities; a conforming freestanding implementation is only required to provide certain library facilities: those in
<float.h>
,<limits.h>
,<stdarg.h>
, and<stddef.h>
; since AMD1, also those in<iso646.h>
; since C99, also those in<stdbool.h>
and<stdint.h>
; and since C11, also those in<stdalign.h>
and . In addition, complex types, added in C99, are not required for freestanding implementations. The standard also defines two environments for programs, a freestanding environment, required of all implementations and which may not have library facilities beyond those required of freestanding implementations, where the handling of program startup and termination are implementation-defined, and a hosted environment, which is not required, in which all the library facilities are provided and startup is through a functionint main (void)
orint main (int, char *[])
. An OS kernel would be a freestanding environment; a program using the facilities of an operating system would normally be in a hosted implementation.
我不确定我是否理解正确...
我将重新表述我的理解方式:
精简版用于操作系统开发。完整版适用于可在操作系统中运行的程序。
我不明白关于 main
的短语功能。
我要求解释这段文字。
最佳答案
两者兼而有之。
该标准定义了两个运行时环境。一个拥有所有的语言,加上标准运行时库的一小部分,再加上额外的实现定义的东西。这是一个独立环境,并且(如您所猜)旨在用于在裸机上进行编程,例如操作系统内核。
另一个更复杂的环境包括上述所有设施以及所有标准运行时库。这是一个托管环境,用于应用程序编程。
现在,实现只需要包含独立环境的设施。如果仅此而已,它就称为独立实现。用于深度嵌入式微 Controller 的交叉编译器通常是独立的实现,因为许多标准 C 运行时没有意义或太大而不适合。
实现托管环境是可选的;如果一个实现提供了托管环境,它就被称为托管实现。托管实现必须还提供独立环境,即只有独立实现的设施可用的编译模式。 (这种模式通常用于编译诸如 C 运行时本身之类的东西,其中大部分只是更多的 C。)
最后,main
的标准签名(int main(void)
和 int main(int, char **)
)是一部分托管 环境。独立环境也可以使用这些签名,但它也可以将 main
的签名定义为任何它喜欢的签名(void main(void)
很常见)或使用入口点的不同名称。
关于c - ISO C 标准定义了两类一致性实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13710101/
GhostScript PDF/A 生成好像有错误 当您通过 GhostScript 生成 PDF/A 文档时,当您单击 Adobe Reader 时,会出现一个一致性选项卡,其中显示: “一致性
我有一个需要测试的 XPath 引擎实现。 是否有一组标准的一致性测试可以用来验证是否符合 XPath 规范(与 XSLT 相关)。 什么将是完美的 XML 文档 XPath 表达式和预期的结果。 最
帮助我了解在这种情况下我可以期望与 MongoDB 的一致性级别。 我们正在运行一个副本集,其中 Mongoid 中的 consistency 标志设置为 strong,这意味着只读到 master。
假设我有一个采用一个参数的方法。 此参数应满足以下要求: 'of type':方法需要知道参数属于特定类(或子类)。 'implements interface':方法需要知道参数实现了特定的接口(i
当协议(protocol)将属性声明为可选而具体类型将其声明为非可选时,如何使具体类型符合协议(protocol)? 这是问题所在: protocol Track { var trackNum
我正在考虑使用浏览器的 navigator.mimeTypes 数组作为第三级用户/浏览器标识符。例如,当我在 Chrome 上运行时... console.log(navigator.mimeTyp
我有以下协议(protocol): protocol ProtoAInput { func funcA() } protocol ProtoA { var input: ProtoAI
如果选择“最终”一致性,则发生写入的区域内的一致性是什么? 如果我只需要区域强一致性,应该选择哪个选项? 最佳答案 如果您需要在主要区域内进行强读取,则应该选择强一致性或有界过时一致性。 关于azur
您好,我是一名初学者,目前正在尝试学习 java 编程。课本上的问题: 编写一个程序来帮助人们决定是否购买混合动力汽车。你的程序的输入应该是:•新车的成本•预计每年行驶里程•预计汽油价格 •每加仑英里
我正在尝试制作一个可以在 UILabel 上使用的 Swift 协议(protocol), UITextField , 和 UITextView包含他们的text , attributedText ,
我有一个类扩展: extension UICollectionViewCell { class func registerFromNibInCollectionView(collectionV
为了在 Swift 中模拟对象进行测试,我通常遵循这样的模式:编写一个协议(protocol)来描述我想要的对象的行为,然后使用 Cuckoo 为其生成模拟以进行测试。 通常,这些协议(protoco
假设我有两个非通用协议(protocol)(1) protocol StringValue { var asString: String {get} } protocol StringProv
我有一组协议(protocol)可以在 UITableView 中显示一个元素: protocol TableRepresentableRow { var title: String { get
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
用“class”标记 CacheManager 解决了我的问题。 案例:一个简单的缓存器,mutating get 不是我想要的,那么对于引用类型或类类型应该怎么做? protocol Cacher
我想要一个符合协议(protocol)的变量,但是 swift 编译器告诉我协议(protocol)没有确认。 protocol A {} protocol B { var a : A { g
如果我有一个类 Christmas 和一个协议(protocol) Merry,要使 Christmas 符合 Merry,很多人会这样做: class Christmas { ... } e
@objc public protocol P1 { func p1foo() } @objc public protocol P2 { func p2foo() } class A: NSO
我有一些结构符合的基本协议(protocol)(模型)。它们也符合 Hashable protocol Model {} struct Contact: Model, Hashable { v
我是一名优秀的程序员,十分优秀!