首页 > 后端开发 > C++ > 如何在 C 中将整数向量转换为字符串?

如何在 C 中将整数向量转换为字符串?

Susan Sarandon
发布: 2024-11-03 14:22:02
原创
675 人浏览过

How to Convert a Vector of Integers to a String in C  ?

在 C 中将整数向量转换为字符串

在 C 中,将整数向量转换为字符串涉及迭代元素并追加他们到一个字符串。一种简单的方法是使用字符串流。

<code class="cpp">#include <sstream>

std::stringstream ss;
for (size_t i = 0; i < v.size(); ++i) {
  if (i != 0) {
    ss << ",";
  }
  ss << v[i];
}
std::string result = ss.str();</code>
登录后复制

或者,std::for_each 函数允许您以更优雅的方式实现此目的:

<code class="cpp">std::string result;
std::for_each(v.begin(), v.end(), [&](int n) { result += std::to_string(n) + ","; });
result.pop_back(); // Remove the trailing comma</code>
登录后复制

以上是如何在 C 中将整数向量转换为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板