gpt4 book ai didi

rust - 如何迭代一片映射切片?

转载 作者:行者123 更新时间:2023-11-29 07:58:18 24 4
gpt4 key购买 nike

这是我正在尝试做的一个例子:

for &xs in &[&[1, 2, 3].iter().map(|x| x + 1)] {
for &x in xs {
println!("{}", x);
}
}

这给了我以下错误:

error[E0277]: the trait bound `&std::iter::Map<std::slice::Iter<'_, {integer}>, [closure@src/main.rs:2:40: 2:49]>: std::iter::Iterator` is not satisfied
--> src/main.rs:3:9
|
3 | / for &x in xs {
4 | | println!("{}", x);
5 | | }
| |_________^ the trait `std::iter::Iterator` is not implemented for `&std::iter::Map<std::slice::Iter<'_, {integer}>, [closure@src/main.rs:2:40: 2:49]>`
|
= note: `&std::iter::Map<std::slice::Iter<'_, {integer}>, [closure@src/main.rs:2:40: 2:49]>` is not an iterator; maybe try calling `.iter()` or a similar method
= note: required by `std::iter::IntoIterator::into_iter`

...这非常令人惊讶,因为我清楚地看到 how std::Iter::Map implements Iterator .

为什么会报错以及如何遍历映射切片的切片?

最佳答案

&T不能迭代为 next变异。

因此,如果你有一个 &Map<_, _> ,你不能迭代它。

您可能没有意识到 &[1,2,3].iter().map(|&x| x+1)意味着

&([1,2,3].iter().map(|&x| x+1))

给出引用。

使用 for &xs in &[&mut ...]也不行,因为它需要移动 xs来自不可变的引用。目前也没有针对固定长度数组的按值迭代器。我相信最简单的解决方案是

for xs in &mut [&mut [1, 2, 3].iter().map(|&x| x+1)] {
for x in xs {
println!("{}", x);
}
}

请注意,这还需要解决 map 的问题调用,它没有取消引用它的输入。

关于rust - 如何迭代一片映射切片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30959539/

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