📜  C++中的swap()

📅  最后修改于: 2021-05-30 09:20:10             🧑  作者: Mango

函数std :: swap()是C++标准模板库(STL)中的内置函数,该函数交换两个变量的值。

句法:

swap(a, b)

参数:该函数接受两个必须交换的必需参数a和b。参数可以是任何数据类型。

返回值:该函数不返回任何内容,它交换两个变量的值。

下面的程序说明了swap()函数:

程序1:

// C++ program for illustration of swap() function
#include 
using namespace std;
  
int main()
{
    int a = 10;
    int b = 20;
    cout << "Value of a before: " << a << endl;
    cout << "Value of b before: " << b << endl;
  
    // swap values of the variables
    swap(a, b);
    cout << "Value of a now: " << a << endl;
    cout << "Value of b now: " << b << endl;
    return 0;
}
输出:
Value of a before: 10
Value of b before: 20
Value of a now: 20
Value of b now: 10

程式2:

#include 
using namespace std;
  
int main()
{
    string a = "Geeks";
    string b = "function";
    cout << "Value of a before: " << a << endl;
    cout << "Value of b before: " << b << endl;
    swap(a, b);
    cout << "Value of a now: " << a << endl;
    cout << "Value of b now: " << b << endl;
    return 0;
}
输出:
Value of a before: Geeks
Value of b before: function
Value of a now: function
Value of b now: Geeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”