c – 如何反转std :: string?

c – 如何反转std :: string?,第1张

概述参见英文答案 > How do you reverse a string in place in C or C++?                                    26 我试图弄清楚当我以二进制数字读取字符串时如何反转字符串temp istream& operator >>(istream& dat1d, binary& b1) { 参见英文答案 > How do you reverse a string in place in C or C++?26
我试图弄清楚当我以二进制数字读取字符串时如何反转字符串temp
istream& operator >>(istream& dat1d,binary& b1)    {                  string temp;     dat1d >> temp;    }
解决方法 我不知道包含二进制数的字符串的含义.但是,为了反转字符串(或任何与STL兼容的容器),您可以使用std :: reverse(). std :: reverse()运行到位,所以你可能想要首先创建一个字符串的副本:
#include <algorithm>#include <iostream>#include <string>int main(){    std::string foo("foo");    std::string copy(foo);    std::cout << foo << '\n' << copy << '\n';    std::reverse(copy.begin(),copy.end());    std::cout << foo << '\n' << copy << '\n';}
总结

以上是内存溢出为你收集整理的c – 如何反转std :: string?全部内容,希望文章能够帮你解决c – 如何反转std :: string?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1254378.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存