gpt4 book ai didi

c++ - 在 range v3 库中,为什么 ranges::copy 不适用于 ranges::views::chunk 的输出?

转载 作者:行者123 更新时间:2023-12-01 14:20:17 24 4
gpt4 key购买 nike

这按预期工作:

#include <range/v3/all.hpp>
#include <iostream>

int main() {
auto chunklist = ranges::views::ints(1, 13) | ranges::views::chunk(4);
for (auto rng : chunklist) {
for (auto elt : rng)
std::cout << elt << " ";
std::cout << std::endl;
}
}

在屏幕上:

1 2 3 4
5 6 7 8
9 10 11 12

但是如果我尝试用 ranges::copy 代替 for 循环,我会遇到编译错误

  auto chunklist = ranges::views::ints(1, 13) | ranges::views::chunk(4);
for (auto rng : chunklist) {
ranges::copy(rng, std::ostream_iterator<int>{std::cout, " "}); // FAIL
std::cout << std::endl;
}

编译错误相当模糊。我不会在这里给出全文,但看起来几乎所有概念都失败了:

note:   constraints not satisfied
...
note: within '...' CPP_concept_bool weakly_incrementable =
...
note: within '...' CPP_concept_bool semiregular =
...
note: within '...' CPP_concept_bool default_constructible =
...
note: within '...' CPP_concept_bool constructible_from =
...
confused by earlier errors, bailing out

我正在使用带选项的 gcc-9.3:

g++ -fconcepts --std=c++2a chunksimplified.cc

来自 github 的 trunk range-v3 库的顶部

我应该如何修改代码以使用显式算法而不是原始循环?

最佳答案

问题不在于 ranges::copy,只是 ranges::views 不能很好地与 std::ostream_iterator

您可以只使用 ranges::ostream_iterator 代替:

ranges::copy(rng, ranges::ostream_iterator<int>{std::cout, " "});  

这是一个有效的 demo .

关于c++ - 在 range v3 库中,为什么 ranges::copy 不适用于 ranges::views::chunk 的输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61706169/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com