免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2752 | 回复: 5
打印 上一主题 下一主题

问个模板问题。请大家指教。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-07-06 22:31 |只看该作者 |倒序浏览
appadm@xpangxie:~$ uname -a
Linux xpangxie 2.6.26-2-686 #1 SMP Sat Nov 20 23:06:30 UTC 2010 i686 GNU/Linux
appadm@xpangxie:~$ cat testcpp.cpp
#include <iostream>

using namespace std;
template <class T>
T max(T a,T b){
    return a>b?a:b;
}
int main(){
    std::cout << "max(5,3)! =="
         << max(5,3) <<endl;



    std::cout << "max(2.4,2.1)! =="
         << max(2.4,2.1) <<endl;

    return 0;
}
appadm@xpangxie:~$ g++ testcpp.cpp -o testcpp
testcpp.cpp: In function 'int main()':
testcpp.cpp:10: error: call of overloaded 'max(int, int)' is ambiguous
testcpp.cpp:5: note: candidates are: T max(T, T) [with T = int]
/usr/include/c++/4.3/bits/stl_algobase.h:210: note:                 const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = int]
testcpp.cpp:15: error: call of overloaded 'max(double, double)' is ambiguous
testcpp.cpp:5: note: candidates are: T max(T, T) [with T = double]
/usr/include/c++/4.3/bits/stl_algobase.h:210: note:                 const _Tp& std::max(const _Tp&, const _Tp&) [with _Tp = double]
appadm@xpangxie:~$

请大侠们给指教指教。

论坛徽章:
0
2 [报告]
发表于 2011-07-06 23:29 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
3 [报告]
发表于 2011-07-07 09:24 |只看该作者
也可以在你自己写的max前面加上::,冲突问题

论坛徽章:
0
4 [报告]
发表于 2011-07-07 21:42 |只看该作者
回复 3# sh19871122


::这个怎么加呀。能详细的说一下吗?谢谢

论坛徽章:
0
5 [报告]
发表于 2012-05-25 18:16 |只看该作者
这个是因为max与库函数重名;  可以改T max(T a,T b)为T max(T &a,T&b)   或者给max重新取个名字

论坛徽章:
0
6 [报告]
发表于 2012-05-26 06:18 |只看该作者
std 里边已经有一个 max 了,要么你就不要 using namespace std;
要么你显式说明 main 函数中到底用哪个 max
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP