Compartir a través de


basic_istringstream::operator=

Assigns the values to this basic_istringstream object from the object parameter.

basic_istringstream& operator=(
    basic_istringstream&& _Right
);

Parameters

  • _Right
    An rvalue reference to a basic_istringstream object.

Remarks

The member operator replaces the contents of the object with the contents of _Right, treated as an rvalue reference move assignment.

Requirements

Header: <sstream>

Namespace: std

See Also

Reference

basic_istringstream Class

<sstream>

Lvalues and Rvalues

iostream Programming

iostreams Conventions

Other Resources

basic_istringstream Members

<sstream> Members