다음을 통해 공유


basic_istream::operator=

Assigns the basic_istream on the right side of the operator to this object. This is a move assignment involving an rvalue reference that does not leave a copy behind.

basic_istream& operator=(
    basic_istream&& _Right
);

매개 변수

  • _Right
    An rvalue reference to a basic_ifstream object.

반환 값

Returns *this.

설명

The member operator calls swap(_Right).

요구 사항

Header: <istream>

네임스페이스: std

참고 항목

참조

basic_istream 클래스

basic_iostream 클래스

<istream>

Lvalue 및 Rvalue

기타 리소스

basic_istream 멤버

basic_iostream 멤버

<istream> 멤버