std::pair::swap
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void swap(pair& other); |
(C++11 起) | |
交换
first
与other.first
和second
other.second
.原文:
Swaps
first
with other.first
and second
with other.second
.目录 |
[编辑] 参数
other | - | 对值进行交换
|
[编辑] 返回值
(无)
[编辑] 例外
noexcept specification: (C++11 起)
[编辑] 示例
#include <iostream> #include <utility> #include <string> int main() { std::pair<int, std::string> p1, p2; p1 = std::make_pair(10, "test"); p2.swap(p1); std::cout << "(" << p2.first << ", " << p2.second << ")\n"; }
输出:
(10, test)