basic_ios :: swap(x)用于交换基类的所有数据成员(除了rdbuf()) ,并在* this和x之间交换gcount()计数器的值。此basic_ios :: swap(x)函数是受保护的函数。下面是相同的语法和头文件:
头文件:
#include
句法:
void swap (basic_istream& x);
参数:接受以下参数:
- x :它表示另一个具有相同参数的对象。
返回值:方法basic_istream :: get()不返回任何内容。
以下是演示basic_istream :: swap()的程序:
程序1:
// C++ program to demonstrate
// basic_istream::swap()
#include
using namespace std;
// Driver Code
int main()
{
// Input String gfg1
istringstream gfg1("Welcome");
// Input String gfg2
istringstream gfg2("Geeks");
// swap function for swapping
// both the strings
swap(gfg1, gfg2);
cout << gfg1.rdbuf() << " "
<< gfg2.rdbuf() << endl;
return 0;
}
输出:
Geeks Welcome
程式2:
// C++ program to demonstrate
// basic_istream::swap()
#include
using namespace std;
// Driver Code
int main()
{
// Input String gfg1
istringstream gfg1("forGeeks");
// Input String gfg2
istringstream gfg2("Geeks");
// swap function for swapping
// both the strings
gfg1.swap(gfg2);
cout << gfg1.rdbuf() << " "
<< gfg2.rdbuf() << endl;
return 0;
}
输出:
Geeks forGeeks
参考: http : //www.cplusplus.com/reference/istream/basic_istream/swap/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。