跳轉到內容

Ada 程式設計/屬性/'Machine Emin

來自華夏公益教科書,開放的書籍,開放的世界

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

X'Machine_Emin 是 Ada 屬性,其中 X 是任何浮點型別。

浮點型別表示為

其中

sign 是 1 或 -1
mantissa 是以 radix 為基數的 fractions
radix 是硬體基數 (通常為 2)
exponent 是一個整數

'Machine_Emin 返回最小的指數。

with Ada.Text_IO;

procedure Machine_Emin is

   package T_IO renames Ada.Text_IO;
   package I_IO is new  Ada.Text_IO.Integer_IO (Integer);
begin
   T_IO.Put ("Emin of Float type       = ");
   I_IO.Put (Float'Machine_Emin);
   T_IO.New_Line;
   
   T_IO.Put ("Emin of Long_Float type  = ");
   I_IO.Put (Long_Float'Machine_Emin);
   T_IO.New_Line;

end Machine_Emin;

在 x86-64 架構上使用 GNAT 4.6 的輸出是

Emin of Float type       =        -125
Emin of Long_Float type  =       -1021

華夏公益教科書

[編輯 | 編輯原始碼]

Ada 參考手冊

[編輯 | 編輯原始碼]
華夏公益教科書