我试图弄清楚当我以二进制数字读取字符串时如何反转字符串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?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)