C++ STL std::max() 函数
max() 函数是算法头的库函数,用于从给定的两个值中找到最大值,它接受两个值并返回最大值,如果两个值相同则返回第一个值。
注意:使用 max() 函数 - 包括<algorithm>
标题或者您可以简单使用<bits/stdc++.h>
头文件。
std::max() 函数的语法
std::max(const T& a, const T& b);
参数: const T& a, const T& b
- 要比较的值。
返回值: T
- 它返回类型 T 的最大值。
例:
Input: int a = 10; int b = 20; //finding largest value cout << max(a,b) << endl; Output: 20
C++ STL程序演示std::max()函数的使用
在这个例子中,我们将从不同类型的给定值中找到最大值。
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
cout << "max(10,20) :" << max(10, 20) << endl;
cout << "max(10.23f,20.12f):" << max(10.23f, 20.12f) << endl;
cout << "max(-10,-20) :" << max(-10, -20) << endl;
cout << "max('A','a') :" << max('A', 'a') << endl;
cout << "max('A','Z') :" << max('A', 'Z') << endl;
cout << "max(10,10) :" << max(10, 10) << endl;
return 0;
}
输出
max(10,20) :20 max(10.23f,20.12f):20.12 max(-10,-20) :-10 max('A','a') :a max('A','Z') :Z max(10,10) :10
参考:C++ std::max()
相关用法
- C++ std::max_element()用法及代码示例
- C++ std::max用法及代码示例
- C++ std::make_signed用法及代码示例
- C++ std::move_backward用法及代码示例
- C++ std::move用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ std::minmax()用法及代码示例
- C++ std::min_element()用法及代码示例
- C++ std::multiplies用法及代码示例
- C++ std::min()用法及代码示例
- C++ std::minmax()、std::minmax_element()用法及代码示例
- C++ std::min用法及代码示例
- C++ std::memcmp()用法及代码示例
- C++ std::min_element用法及代码示例
- C++ std::memchr用法及代码示例
- C++ std::minus用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ std::is_member_object_pointer模板用法及代码示例
- C++ std::copy_n()用法及代码示例
注:本文由纯净天空筛选整理自 std::max() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。