Ada Programming/Pragmas/Normalize Scalars
< Ada Programming < PragmasComputing » Computer Science » Computer Programming » Ada Programming

Summary
The pragma Normalize_Scalars directs the compiler to initialize otherwise uninitialized scalar variables with predictable values. If possible, the compiler will choose out-of-range values.
Example
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;
See also
Wikibook
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.