C++ 函数库 - 交换



描述

它交换了 *this 和 other 的存储的可调用对象。

声明

以下是 std::function::swap 的声明。

void swap( function& other );

C++11

void swap( function& other );

参数

other − 它是一个函数包装器,用于交换存储的可调用对象。

返回值

异常

无异常 − 此成员函数从不抛出异常。

functional.htm
广告