标题:写一个模板函数T max(T x1, T x2)求两个数中大的数,并对整数(int类型)模板 ...
只看楼主
遗情处有诗章
Rank: 1
等 级:新手上路
帖 子:47
专家分:0
注 册:2017-3-10
结帖率:75%
已结贴  问题点数:10 回复次数:2 
写一个模板函数T max(T x1, T x2)求两个数中大的数,并对整数(int类型)模板特例化,返回小的数。

求助 代码错误怎么改

#include<iostream>

#include<stdlib.h>

#include <cstring>

using namespace std;

template<typename T>

T max(T x, T y) {

   return (x > y) ? x : y;

}

void main() {

   float x1 = 2.3, y1 = 3.2;

   int x2 = 2, y2 = 1;

   cout << "max(x1,y1) = " <<max(x1, y1) << endl;

   cout << "max(x2,y2) = " <<max(x2, y2) << endl;

   system("pause");

}
搜索更多相关主题的帖子: 模板 max int 类型 include 
2018-05-28 09:46
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:507
帖 子:8890
专家分:53117
注 册:2011-1-18
得分:10 
程序代码:
template<class T>
constexpr const T& max( const T& a, const T& b )
{
    return (a < b) ? b : a;
}

template<>
constexpr const int& max( const int& a, const int& b )
{
    return (b < a) ? b : a;
}

#include <iostream>
using namespace std;

int main( void )
{
    cout << ::max(1.1, 2.2) << endl;
    cout << ::max(111, 222) << endl;
}

假如你用的是上个世纪的编译器,将 constexpr 去掉即可。
2018-05-28 12:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-487345-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.047907 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved