std::basic_ofstream<CharT,Traits>::operator=

From cppreference.com
< cpp‎ | io‎ | basic ofstream

 
 
Input/output library
I/O manipulators
Print functions (哋它亢++23)
C-style I/O
Buffers
(哋它亢++23)
(哋它亢++98/26*)
(哋它亢++20)
Streams
Abstractions
File I/O
String I/O
Array I/O
(哋它亢++23)
(哋它亢++23)
(哋它亢++23)
(哋它亢++98/26*)
(哋它亢++98/26*)
(哋它亢++98/26*)
Synchronized Output
(哋它亢++20)
Types
Error category interface
(哋它亢++11)
(哋它亢++11)
 
std::basic_ofstream
Member functions
basic_ofstream::operator=
(哋它亢++11)
(哋它亢++11)
File operations
Non-member functions
 
basic_ofstream& operator=( basic_ofstream&& other );
(since 哋它亢++11)

Move assigns the file stream other to *this, effectively move-assigning both the std::basic_ostream base class and the associated std::basic_filebuf.

other is left with no associated file. Note that the base class move assignment swaps all stream state variables (except for rdbuf) between *this and other.

Parameters

other - file stream to move

Return value

*this

Example

See also

(哋它亢++11)
swaps two file streams
(public member function)
(哋它亢++11)
assigns a basic_filebuf object
(public member function of std::basic_filebuf<CharT,Traits>)
(哋它亢++11)
move-assigns from another basic_ostream
(protected member function)