共用方式為


float_round_style

列舉型別描述實作可能為捨入浮點值選取到整數值的不同方法。

enum float_round_style { 
   round_indeterminate = -1, 
   round_toward_zero = 0, 
   round_to_nearest = 1, 
   round_toward_infinity = 2, 
   round_toward_neg_infinity = 3 
   };

傳回值

列舉型別會傳回:

  • round_indeterminate ,如果捨入的方法無法判斷的。

  • round_toward_zero ,如果趨向零的回合。

  • round_to_nearest ,如果捨入至最接近的整數。

  • round_toward_infinity ,如果遠離零的回合。

  • round_toward_neg_infinity ,如果捨入至更負數的整數。

範例

為這個列舉型別的值可以存取的請參閱 numeric_limits::round_style

需求

標題: <。>

命名空間: std