命名空间
变体
操作

std::fmax, std::fmaxf, std::fmaxl

来自 cppreference.cn
< cpp‎ | numeric‎ | math
 
 
 
常用数学函数
函数
基本操作
(C++11)  
(C++11)
(C++11)
fmax
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
指数函数
(C++11)
(C++11)

(C++11)
(C++11)
幂函数
(C++11)
(C++11)
三角
双曲函数
(C++11)
(C++11)
(C++11)

误差函数和伽马函数
(C++11)
(C++11)
(C++11)
(C++11)
取整浮点运算
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
浮点操纵函数
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
分类和比较
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型
(C++11)
(C++11)
(C++11)
宏常量
分类
(C++11)(C++11)(C++11)(C++11)(C++11)


 
定义于头文件 <cmath>
(1)
float       fmax ( float x, float y );

double      fmax ( double x, double y );

long double fmax ( long double x, long double y );
(直至 C++23)
constexpr /*浮点类型*/

            fmax ( /*浮点类型*/ x,

                   /*浮点类型*/ y );
(C++23 起)
float       fmaxf( float x, float y );
(2) (C++11 起)
(C++23 起为 constexpr)
long double fmaxl( long double x, long double y );
(3) (C++11 起)
(C++23 起为 constexpr)
SIMD 重载 (C++26 起)
定义于头文件 <simd>
template< class V0, class V1 >

constexpr /*math-common-simd-t*/<V0, V1>

            fmax ( const V0& v_x, const V1& v_y );
(S) (C++26 起)
额外重载 (自 C++11 起)
定义于头文件 <cmath>
template< class Integer >
double      fmax ( Integer x, Integer y );
(A) (C++23 起为 constexpr)
1-3) 返回两个浮点参数中较大的一个,将 NaN 视为缺失数据(在 NaN 和数值之间,选择数值)。 库为所有 cv-unqualified 浮点类型提供了 std::fmax 的重载作为参数的类型。(C++23 起)
S) SIMD 重载在 v_xv_y 上执行逐元素 std::fmax
(参阅 math-common-simd-t 的定义。)
(C++26 起)
A) 为所有整数类型提供了额外的重载,它们被视为 double
(C++11 起)

目录

[编辑] 参数

x, y - 浮点数或整数值

[编辑] 返回值

如果成功,返回两个浮点值中较大的一个。返回的值是精确的,不依赖于任何舍入模式。

[编辑] 错误处理

此函数不受 math_errhandling 中指定的任何错误条件的影响。

如果实现支持 IEEE 浮点运算 (IEC 60559),

  • 如果两个参数中有一个是 NaN,则返回另一个参数的值。
  • 只有当两个参数都是 NaN 时,才返回 NaN。

[编辑] 注意

此函数不要求对零的符号敏感,尽管某些实现会额外强制规定,如果一个参数是 +0,另一个是 -0,则返回 +0

不要求完全按照 (A) 提供额外的重载。它们只需要足以确保对于它们的第一个参数 num1 和第二个参数 num2

  • 如果 num1num2 的类型是 long double,则 std::fmax(num1, num2) 的效果与 std::fmax(static_cast<long double>(num1),
              static_cast<long double>(num2))
    相同。
  • 否则,如果 num1 和/或 num2 的类型是 double 或整数类型,则 std::fmax(num1, num2) 的效果与 std::fmax(static_cast<double>(num1),
              static_cast<double>(num2))
    相同。
  • 否则,如果 num1num2 的类型是 float,则 std::fmax(num1, num2) 的效果与 std::fmax(static_cast<float>(num1),
              static_cast<float>(num2))
    相同。
(直至 C++23)

如果 num1num2 具有算术类型,则 std::fmax(num1, num2) 的效果与 std::fmax(static_cast</*common-floating-point-type*/>(num1),
          static_cast</*common-floating-point-type*/>(num2))
相同,其中 /*common-floating-point-type*/ 是浮点类型,在 num1num2 的类型之间具有最高的 浮点转换等级 和最高的 浮点转换子等级,整数类型的参数被认为具有与 double 相同的浮点转换等级。

如果不存在具有最高等级和次等级的浮点类型,则重载决议不会从提供的重载中产生可用的候选函数。

(C++23 起)

[编辑] 示例

#include <cmath>
#include <iostream>
 
int main()
{
    std::cout << "fmax(2,1)    = " << std::fmax(2, 1) << '\n'
              << "fmax(-Inf,0) = " << std::fmax(-INFINITY, 0) << '\n'
              << "fmax(NaN,-1) = " << std::fmax(NAN, -1) << '\n';
}

输出

fmax(2,1)    = 2
fmax(-Inf,0) = 0
fmax(NaN,-1) = -1

[编辑] 参阅

(C++11)
检查第一个浮点参数是否大于第二个
(函数) [编辑]
(C++11)(C++11)(C++11)
两个浮点值中较小的那个
(函数) [编辑]
返回给定值中较大的那个
(函数模板) [编辑]
返回一个范围中最大的元素
(函数模板) [编辑]
(C++11)
返回两个元素中较小和较大的一个
(函数模板) [编辑]
返回范围中最小和最大的元素
(函数模板) [编辑]
C 文档 用于 fmax