猿问

想使用c++函数库里max函数,请问该怎么用?

具体使用格式,形参,逗号什么的,初学者还请见谅。还有怎么找到那些函数库的函数的用法呢,多谢

森栏
浏览 399回答 2
2回答

吃鸡游戏

#include <algorithm> // 头文件template <class T>const T& max ( const T& a, const T& b );template <class T, class Compare>const T& max ( const T& a, const T& b, Compare comp );有以上两种函数原型. 上面那个使用了模版T, 下面那个还使用了比较类用法 max(a,b) 或者 max(a,b,comp)其中a和b是可比较的两个元素, 函数返回比较大的那个

饮歌长啸

函数:template <class T> const T& max ( const T& a, const T& b ) {return (b<a)?a:b; // or: return comp(b,a)?a:b; for the comp version}例子:// max example#include <iostream>#include <algorithm>using namespace std;int main () {cout << "max(1,2)==" << max(1,2) << endl;cout << "max(2,1)==" << max(2,1) << endl;cout << "max('a','z')==" << max('a','z') << endl;cout << "max(3.14,2.72)==" << max(3.14,2.72) << endl;return 0;}
随时随地看视频慕课网APP
我要回答