当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ fstream swap用法及代码示例



描述

它交换 fstream 对象 x 和 y 的值。

声明

以下是 fstream::swap 的声明。

C++11

template <class charT, class traits>
  void swap (basic_fstream<charT,traits>& x, basic_fstream<charT,traits>& y);

参数
  • x,y∼ basic_fstream 相同类型的对象(即,具有相同的模板参数、charT 和特征)。

返回值

异常

No-throw guarantee─ 这个成员函数从不抛出异常。

数据竞争

x 和 y 两个对象都被修改。

示例

在下面的示例中解释了 fstream 交换函数。

#include <fstream>

int main () {
   std::fstream foo;
   std::fstream bar ("test.txt");

   swap(foo,bar);

   foo << "tutorialspoint";

   foo.close();

   return 0;
}

相关用法


注:本文由纯净天空筛选整理自 C++ Fstream Library - Swap Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。