std::fmin
来自cppreference.com
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
定义于头文件 <cmath>
|
||
float fmin( float x, float y ); |
(1) | (C++11 起) |
double fmin( double x, double y ); |
(2) | (C++11 起) |
long double fmin( long double x, long double y ); |
(3) | (C++11 起) |
Promoted fmin( Arithmetic x, Arithmetic y ); |
(4) | (C++11 起) |
返回较小的两个浮点参数.
4) 如果任何参数是整数类型,它被转换为double。如果有另一种说法是long double,则返回类型是long double,否则它是double.
[编辑] 参数
x, y | - |
[编辑] 返回值
[编辑] 另请参阅
(C++11) |
(函数) |