Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::basic_ios<CharT,Traits>::move

      From cppreference.com
      <cpp‎ |io‎ |basic ios
       
       
       
       
      protected:
      void move( basic_ios& other);
      (since C++11)
      protected:
      void move( basic_ios&& other);
      (since C++11)

      Replaces the current state with that ofother, except for the associatedrdbuf.other is in valid, but unspecified state after the call. After the call to this function,rdbuf() returns a null pointer,other.rdbuf() returns the same value as before the call, andother.tie() returns a null pointer.

      This member function is protected: it is called by the protected move constructors of the derived stream classesstd::basic_ostream andstd::basic_istream, which, in turn, are called by the public move constructors of the further derived stream classes such asstd::basic_ofstream, which know how to correctly move the associated streambuffer.

      [edit]Parameters

      other - thebasic_ios object to transfer the state from

      [edit]Return value

      (none)

      [edit]See also

      (C++11)
      swaps with anotherstd::basic_ios except forrdbuf
      (protected member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/io/basic_ios/move&oldid=119759"

      [8]ページ先頭

      ©2009-2025 Movatter.jp