⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 9_1.cpp

📁 10个比较经典的C++程序。初学者就先多学习学习别人吧。
💻 CPP
字号:
#include <iostream> 
using namespace std; 
template <class X> void swapfun(X &a, X &b) 
{	X temp;   temp = a;   a = b;   b = temp;   cout << "Inside template swapfun.\n"; } 
void swapfun(int &a, int &b) //该重载函数与模板函数swapfun()的int类型相同 
{	int temp;   temp = a;   a = b;   b = temp; 
	cout << "Inside swapfun int specialization.\n"; 
} 
int main() 
{	int i=1, j=2;   float x=1.1, y=2.3;   char a='a', b='b'; 
	cout << "Original i, j: " << i << ' ' << j << '\n'; 
	cout << "Original x, y: " << x << ' ' << y << '\n'; 
	cout << "Original a, b: " << a << ' ' << b << '\n'; 
	swapfun(i, j);  //调用非模板函数void swapfun(int &a, int &b)
   swapfun(x, y);  //调用模板的实例
   swapfun(a, b); //调用模板的实例 
	cout << "swapped i, j: " << i << ' ' << j << '\n'; 
	cout << "swapped x, y: " << x << ' ' << y << '\n'; 
	cout << "swapped a, b: " << a << ' ' << b << '\n'; 
	return 0; 
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -