摘要:
std::swap std::swap 用于交换2个元素,g++源码如下 /** * @brief Swaps two values. * @param __a A thing of arbitrary type. * @param __b Another thing of arbitrary ty 阅读全文
摘要:
std::tie 介绍 std::tie是C++11以后引入的新特性,是一个函数模板,原型: template<class... Types> tuple<Types&...> tie (Types&... args) noexcept; tie将其参数通过引用方式绑定到tuple的元素,常用来解压 阅读全文