C++ 输入输出流的引用调用

内联函数是代码的复制,减少程序的跳转

#include<iostream>

using namespace std;

inline void swap(int&, int&);

int main()
{
	int i=7, j=-3;
	swap(i, j);
	cout<<"i= "<<i<<endl;
	cout<<"j= "<<j<<endl;
	return 0;
}

void swap(int&a, int &b)
{
	int t;
	t = a;
	a = b;
	b = t;
}


C++ 输入输出流的引用调用,布布扣,bubuko.com

C++ 输入输出流的引用调用

上一篇:python条件变量


下一篇:实战篇:Oracle分区表必知必会【在线重定义】