gpt4 book ai didi

rust - 为什么这个迭代器需要一个生命周期,我该如何给它一个生命周期?

转载 作者:行者123 更新时间:2023-12-03 11:26:30 24 4
gpt4 key购买 nike

我正在尝试编译以下内容:

fn read<'a>(tokens: impl Iterator<Item=&'a str>) -> impl Iterator<Item=String> {
tokens.map(|t| t.to_owned())
}
error[E0482]: lifetime of return value does not outlive the function call
--> src/lib.rs:1:53
|
1 | fn read<'a>(tokens: impl Iterator<Item=&'a str>) -> impl Iterator<Item=String> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
note: the return value is only valid for the lifetime `'a` as defined on the function body at 1:9
--> src/lib.rs:1:9
|
1 | fn read<'a>(tokens: impl Iterator<Item=&'a str>) -> impl Iterator<Item=String> {
| ^^

Playground 链接:https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=55460a8b17ff10e30b56a9142338ec19

令我感到奇怪的是返回值与生命周期有关;它的内容被拥有并直接向外传递。

我看到这篇博文:https://blog.katona.me/2019/12/29/Rust-Lifetimes-and-Iterators/

但这些都不起作用:

fn read<'a>(tokens: impl Iterator<Item=&'a str>) -> impl Iterator<Item=String> + '_ {
fn read<'a>(tokens: impl Iterator<Item=&'a str>) -> impl Iterator<Item=String> + 'a {

我怀疑我在这里误解了迭代器的一些关键方面。有什么建议吗?

最佳答案

我通过向 both 迭代器添加 + 'a 解决了这个问题:

fn read<'a>(tokens: impl Iterator<Item=&'a str> + 'a) -> impl Iterator<Item=String> + 'a {
tokens.map(|t| t.to_owned())
}

关于rust - 为什么这个迭代器需要一个生命周期,我该如何给它一个生命周期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63608083/

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