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

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

Susan Sarandon
Susan Sarandon原创
2024-11-03 14:22:02602浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn