C++代码错误解决1(函数模板)

1、代码如下

复制代码
//示例函数模板的使用
#include <iostream>
#include <string>
using namespace std;
template <typename T>//函数模板
T max(T a,T b)
{
	return a>b?a:b;
} 
int main()
{
	int a,b;
	cout<<"input two integers to a&b:"<<endl;
	cin>>a>>b;
	cout<<"max("<<a<<","<<b<<")="<<max(a,b)<<endl;
	
	char c,d;
	cout<<"input two chars to c&d"<<endl;
	cin>>c>>d;
	cout<<"max("<<"\'"<<c<<"\'"<<","<<"\'"<<d<<"\'"<<")=";
	cout<<max(c,d)<<endl;
	
	float x,y;
	cout<<"input two floats to x&y:"<<endl;
	cin>>x>>y;
	cout<<"max("<<x<<","<<y<<")="<<max(x,y)<<endl;
	
	string p,h;
	cout<<"input two strings to p&h:"<<endl;
	cin>>p>>h;
	cout<<"max("<<"\'"<<p<<"\'"<<","<<"\'"<<h<<"\'"<<")=";
	cout<<max(p,h)<<endl;
	
	return 0;
}

2、报错如下

3、报错原因:

代码中使用了一个函数模板 max,但是在 C++ 中已经有一个名为 max 的标准库函数,用于比较两个值并返回较大的那个。因此,编译器无法确定到底是要调用自己定义的函数模板还是标准库的 max 函数。

4、解决办法:

1、将函数模板 max 重命名为其他名称,以避免与标准库函数冲突

2、在调用自己的函数模板时,使用作用域解析运算符 :: 来明确指定你要调用的是你自己定义的函数模板,而不是标准库的 max 函数。

方法一:

方法二:

5、这里我用方法一,修改后的代码如下:

复制代码
//示例函数模板的使用
#include <iostream>
#include <string>
using namespace std;
template <typename T>//函数模板
T my_max(T a,T b)
{
	return a>b?a:b;
} 
int main()
{
	int a,b;
	cout<<"input two integers to a&b:"<<endl;
	cin>>a>>b;
	cout<<"max("<<a<<","<<b<<")="<<my_max(a,b)<<endl;
	
	char c,d;
	cout<<"input two chars to c&d"<<endl;
	cin>>c>>d;
	cout<<"max("<<"\'"<<c<<"\'"<<","<<"\'"<<d<<"\'"<<")=";
	cout<<my_max(c,d)<<endl;
	
	float x,y;
	cout<<"input two floats to x&y:"<<endl;
	cin>>x>>y;
	cout<<"max("<<x<<","<<y<<")="<<my_max(x,y)<<endl;
	
	string p,h;
	cout<<"input two strings to p&h:"<<endl;
	cin>>p>>h;
	cout<<"max("<<"\'"<<p<<"\'"<<","<<"\'"<<h<<"\'"<<")=";
	cout<<my_max(p,h)<<endl;
	
	return 0;
}
相关推荐
xsyaaaan20 分钟前
代码随想录Day31动态规划:1049最后一块石头的重量II_494目标和_474一和零
算法·动态规划
淀粉肠kk20 分钟前
C++11列表初始化:{}的革命性进化
c++
不绝19121 分钟前
C#进阶:预处理指令/反射,Gettype,Typeof/关键类
开发语言·c#
无小道27 分钟前
Qt-qrc机制简单介绍
开发语言·qt
zhooyu33 分钟前
C++和OpenGL手搓3D游戏编程(20160207进展和效果)
开发语言·c++·游戏·3d·opengl
HAPPY酷37 分钟前
C++ 和 Python 的“容器”对决:从万金油到核武器
开发语言·c++·python
大鹏说大话37 分钟前
告别 MSBuild 脚本混乱:用 C# 和 Nuke 构建清晰、可维护的现代化构建系统
开发语言·c#
Jay Kay1 小时前
GVPO:Group Variance Policy Optimization
人工智能·算法·机器学习
Mr_sun.1 小时前
Day09——入退管理-入住-2
android·java·开发语言
Epiphany.5561 小时前
蓝桥杯备赛题目-----爆破
算法·职场和发展·蓝桥杯