fstream::swap()函式


它交換fstream物件xy的值。

宣告

下面是fstream:: swap的宣告。

C++11

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

引數

x,y ? 與basic_ostream物件型別相同(即,具有相同的模板引數,charTtraits)。

範例

下面的例子解釋了 fstream 中的 swap 函式。

#include <fstream>

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

   swap(foo,bar);

   foo << "Yiibai tutorials";

   foo.close();

   return 0;
}