共用方式為


<sstream> swap

若要在兩個 sstream 物件之間的值。

template<class Elem, class Tr, class Alloc>
    void swap(
        basic_stringbuf<Elem, Tr, Alloc>& _Left,
        basic_stringbuf<Elem, Tr, Alloc>& _Right
    );
template<class Elem, class Tr, class Alloc>
    void swap(
        basic_istringstream<Elem, Tr, Alloc>& _Left,
        basic_istringstream<Elem, Tr, Alloc>& _Right
    );
template<class Elem, class Tr, class Alloc>
    void swap(
        basic_ostringstream<Elem, Tr, Alloc>& _Left,
        basic_ostringstream<Elem, Tr, Alloc>& _Right
    );
template<class Elem, class Tr, class Alloc>
    void swap(
        basic_stringstream<Elem, Tr, Alloc>& _Left,
        basic_stringstream<Elem, Tr, Alloc>& _Right
    );

參數

參數

說明

_Left

sstream 物件的參考。

_Right

sstream 物件的參考。

備註

樣板函式執行 _Left.swap(_Right)。

需求

標題: <sstream>

命名空間: std

請參閱

參考

<sstream>

iostream 程式設計

iostreams 慣例