当前位置:  编程语言>c/c++

C++ Strings(字符串) 成员 swap():交换两个字符串的内容

 
    发布时间:2014-1-19  


    本文导语: C++ Strings(字符串) 成员 swap():交换两个字符串的内容 交换(swap) 语法: void swap( basic_string &str ); swap()函数把str和本字符串交换。例如: string first( "this comes first" ); string second( "and this is second" ); first.swap( second ); ...

c++ strings(字符串) 成员 swap():交换两个字符串的内容

交换(swap)

语法:

  void swap( basic_string &str; );

swap()函数str和本字符串交换。例如:

    string first( "this comes first" );
    string second( "and this is second" );
    first.swap( second );
    cout << first << endl;
    cout << second << endl;

显示:

    and this is second
    this comes first
相关文章推荐:


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3