共用方式為


lrint、、lrintflrintlllrint、、llrintfllrintl

使用目前的進位模式和方向,將指定的浮點值四捨五入成最接近的整數值。

語法

long int lrint(
   double x
);

long int lrint(
   float x
); //C++ only

long int lrint(
   long double x
); //C++ only

long int lrintf(
   float x
);

long int lrintl(
   long double x
);

long long int llrint(
   double x
);

long long int llrint(
   float x
); //C++ only

long long int llrint(
   long double x
); //C++ only

long long int llrintf(
   float x
);

long long int llrintl(
   long double x
);

#define lrint(X) // Requires C11 or higher

參數

x
要捨入的值。

傳回值

如果成功,則傳回已四捨五入的 x 整數值。

問題 傳回
x 超出傳回型別的範圍

x = ±INF

x = NaN
FE_INVALID引發並傳回零 (0)。

備註

由於C++允許多載,因此您可以呼叫 和 llrint float long double 類型的 多載。lrint 在 C 程式中,除非您使用 <tgmath.h> 巨集來呼叫此函式, lrint 而且 llrint 一律採用 double

如果您使用 <tgmath.h>llrint() 巨集,則引數的型別會決定選取哪一個函式版本。 如需詳細資料,請參閱型別泛型數學

如果 x 不代表整數值的浮點對等專案,則這些函式會引發 FE_INEXACT

Microsoft特定:當結果超出傳回型別的範圍,或當參數是 NaN 或無限大時,會定義傳回值。 Microsoft 編譯器會傳回零 (0) 值。

根據預設,此函式的全域狀態會限定於應用程式。 若要變更此行為,請參閱 CRT 中的全域狀態

需求

函式 C 標頭 C++ 標頭
lrint、、lrintflrintlllrint、、llrintfllrintl <math.h> <cmath>
lrint 巨集 <tgmath.h>

如需相容性詳細資訊,請參閱相容性

另請參閱

依字母順序排列的函式參考