📄 demo_function_template_3.cpp
字号:
#include<iostream.h>
template <typename T>
void swap(T& x, T& y)
{
T temp;
temp=x;
x=y;
y=temp;
}
void main()
{
int a=5,b=6;
double c=5.5,d=6.6;
cout<<a<<","<<b<<endl;
swap(a,b);
cout<<a<<","<<b<<endl;
cout<<c<<","<<d<<endl;
swap(c,d);
cout<<c<<","<<d<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -