std::basic_ios::move

std::basic_ios::move

protected:
void move( basic_ios& other );
(since C++11)
protected:
void move( basic_ios&& other );
(since C++11)

Replaces the current state with that of other, except for the associated rdbuf. other is in valid, but unspecified state after the call. After the call to this function, rdbuf() returns NULL, other.rdbuf() returns the same value as before the call, and other.tie() returns 0.

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

Parameters

other - the basic_ios object to transfer the state from

Return value

(none).

See also

(C++11)
swaps with another std::basic_ios except for rdbuf
(protected member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/basic_ios/move

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部