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;
}
相关推荐
jie1889457586625 分钟前
C++ 中的 const 知识点详解,c++和c语言区别
java·c语言·c++
网安INF30 分钟前
RSA加密算法:非对称密码学的基石
java·开发语言·密码学
明月*清风30 分钟前
c++ —— 内存管理
开发语言·c++
蔡蓝35 分钟前
设计模式-观察着模式
java·开发语言·设计模式
WindSearcher1 小时前
大模型微调相关知识
后端·算法
取酒鱼食--【余九】1 小时前
rl_sar实现sim2real的整体思路
人工智能·笔记·算法·rl_sar
西北大程序猿1 小时前
单例模式与锁(死锁)
linux·开发语言·c++·单例模式
你不是我我2 小时前
【Java开发日记】说一说 SpringBoot 中 CommandLineRunner
java·开发语言·spring boot
心扬2 小时前
python网络编程
开发语言·网络·python·tcp/ip
qq_454175792 小时前
c++学习-this指针
开发语言·c++·学习