다음을 통해 공유


basic_ios::move

Moves all values, except the pointer to the stream buffer, from the parameter to the current object.

void move(
   basic_ios&& _Right
);

매개 변수

  • _Right
    The ios_base object to move values from.

설명

The protected member function moves all the values stored in _Right to *this except the stored stream buffer pointer, which is unchanged in _Right and set to a null pointer in *this. The stored tie pointer is set to a null pointer in _Right.

요구 사항

Header: <ios>

네임스페이스: std

참고 항목

참조

basic_ios 클래스

Lvalue 및 Rvalue

iostream 프로그래밍

iostreams 규칙