填充向量来自 char * 中的整数

发布于 2024-07-10 14:56:09 字数 157 浏览 5 评论 0原文

char *values = "   3   1   4 15";

vector<int> array;

填充数组

我想用值3,1,4,15

有没有一种巧妙的方法可以使用 stl 复制算法来做到这一点?

char *values = "   3   1   4 15";

vector<int> array;

I want to populate the array with the values,

3,1,4,15

Is there a slick way to do it with the stl copy algorithm?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待圉鍢 2024-07-17 14:56:09

确实有:

std::istringstream iss(values);
std::copy(std::istream_iterator<int>(iss), 
          std::istream_iterator<int>(), 
          std::back_inserter(array));

Indeed there is:

std::istringstream iss(values);
std::copy(std::istream_iterator<int>(iss), 
          std::istream_iterator<int>(), 
          std::back_inserter(array));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文