当前位置:  开发笔记 > 后端 > 正文

无法返回Chars迭代器,因为它"活不够久"

如何解决《无法返回Chars迭代器,因为它"活不够久"》经验,为你挑选了1个好方法。

我希望能够将一个Chars迭代器分配给一个结构,String该结构是在struct的"constructor"方法中创建的.我该怎么做呢?

代码(运行它):

use std::str::Chars;

fn main() {
    let foo = Foo::new();
}

struct Foo<'a> {
    chars: Chars<'a>
}
impl<'a> Foo<'a> {
    pub fn new() -> Self {
        let s = "value".to_string();
        Foo { chars: s.chars() }
    }
}

错误:

error: `s` does not live long enough
  --> :13:22
13 |>         Foo { chars: s.chars() }
   |>                      ^
note: reference must be valid for the lifetime 'a as defined on the block at 11:25...
  --> :11:26
11 |>     pub fn new() -> Self {
   |>                          ^
note: ...but borrowed value is only valid for the block suffix following statement 0 at 12:36
  --> :12:37
12 |>         let s = "value".to_string();
   |>        

(在我的实际代码中,构造函数从文件中读取文本)



1> mcarton..:

你不能.Chars不取得字符串的所有权,所以一旦你离开Foo::new,字符串就不再存在了.您需要存储字符串本身.Chars实际上只是一个小的实用程序类型,它意味着在现场使用,而不是存储在以后使用的某个地方.


另请参见[将本地字符串作为切片返回(&str)](http://stackoverflow.com/questions/29428227/return-local-string-as-a-slice-str) - `Chars` [包含切片]( https://github.com/rust-lang/rust/blob/1.10.0/src/libcore/str/mod.rs#L326-L328).
推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有