跳转到内容

Ada 编程/编译指示/规范化标量

来自维基教科书,自由的教科书

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

编译指示 Normalize_Scalars 指示编译器用可预测的值初始化未初始化的标量变量。如果可能,编译器将选择超出范围的值。

pragma Normalize_Scalars;
...
My_Variable : Positive; -- Oops, forgot to initialize this variable.
                        -- The compiler (may) initialize this to 0
...
-- Oops, using a variable before it is initialized!
-- An exception should be raised here, since the compiler
-- initialized the value to 0 - an out-of-range value for the Positive type.
Some_Other_Variable := My_Variable;

维基教科书

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