跳转到内容

Ada 编程/编译指示/约定

来自维基教科书,开放的书籍,造福世界

Ada. Time-tested, safe and secure.
Ada. 经久考验,安全可靠。

Convention 编译指示 指示编译器使用外语约定来表示类型或子程序。

支持的外语集取决于编译器实现。通常支持 CC++COBOLFortran

type My_C_Type is record [...];
-- Ada will represent My_C_Type as a C-style structure.
pragma Convention (C, My_C_Type);

维基教科书

[编辑 | 编辑源代码]
华夏公益教科书