gpt4 book ai didi

rust - 为什么 find() 和 position() 的谓词需要不同的类型?

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

给定以下代码:

fn main() {
let vec = vec![0u8, 1, 2, 3, 4, 5, 6];
// find the first element > 3
println!("{}", vec.iter().find(|&x| *x > 3).unwrap());
// find the position of the first element > 3
println!("{}", vec.iter().position(|&x| x > 3).unwrap());
}

并查看文档:

fn find<P>(&mut self, predicate: P) -> Option<<Self as Iterator>::Item>

fn position<P>(&mut self, predicate: P) -> Option<usize>

我很难理解为什么 find() 需要 *xposition() 只需要 x。两者都有 &mut self,在我看来好像两者都在谓词中做同样的工作。

我想这可以通过不同的返回类型推导出来,但具体规则是什么?

最佳答案

让我们试试吧!

#[derive(Debug)]
struct MyNum(u8);

trait MyExt: Iterator + Sized {
fn my_find<P>(&mut self, mut predicate: P) -> Option<Self::Item>
// Changed to take the item directly, not a reference
where
P: FnMut(Self::Item) -> bool,
{
for x in *self {
if predicate(x) {
return Some(x);
}
}
None
}
}

impl<I> MyExt for I
where
I: Iterator,
{
}

fn main() {
let mut vec = vec![0u8, 1, 2, 3, 4, 5, 6];
let vec: Vec<MyNum> = vec.drain(..).map(|x| MyNum(x)).collect();
// find the first element > 3
println!("{:?}", vec.iter().my_find(|x| x.0 > 3).unwrap());
}

编译错误:

error[E0507]: cannot move out of borrowed content
--> src/main.rs:10:18
|
10 | for x in *self {
| ^^^^^ cannot move out of borrowed content

error[E0382]: use of moved value: `x`
--> src/main.rs:12:29
|
11 | if predicate(x) {
| - value moved here
12 | return Some(x);
| ^ value used here after move
|
= note: move occurs because `x` has type `<Self as std::iter::Iterator>::Item`, which does not implement the `Copy` trait

问题是我们可以迭代不可复制的值。当我们使用 position 时,我们不需要调用谓词后的值,所以只传递值是安全的,在过程中使用它。但是,当我们调用 find 时,我们需要将值传递给谓词,然后然后将其作为返回值传递。这意味着谓词不能消耗值!

关于rust - 为什么 find() 和 position() 的谓词需要不同的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27878955/

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