跳转到内容

Ada 编程/编译指示/内联

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

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

编译指示 Inline 指定在代码中调用时,应将子程序内联扩展。

function My_Function return Integer is begin
  return 1+2; -- A simple function suitable for inlining
end My_Function;
pragma inline(My_Function);
...
Some_Variable := My_Function; -- Will be expanded by compiler.

维基教科书

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