gpt4 book ai didi

string - 如何将两个字符串字段与另一个字符串连接起来?

转载 作者:行者123 更新时间:2023-11-29 08:12:49 26 4
gpt4 key购买 nike

我不明白 Rust 如何处理字符串。我创建了一个包含两个字符串字段和一个方法的简单结构。此方法连接字段和来自参数的字符串。我的代码:

fn main() {
let obj = MyStruct {
field_1: "first".to_string(),
field_2: "second".to_string(),
};

let data = obj.get_data("myWord");
println!("{}",data);
}

struct MyStruct {
field_1: String,
field_2: String,
}

impl MyStruct {
fn get_data<'a>(&'a self, word: &'a str) -> &'a str {
let sx = &self.field_1 + &self.field_2 + word;
&* sx
}
}

运行时出现错误:

src\main.rs:18:18: 18:31 error: binary operation `+` cannot be applied to type `&collections::string::String` [E0369]
src\main.rs:18 let sx = &self.field_1 + &self.field_2 + word;
^~~~~~~~~~~~~
src\main.rs:19:10: 19:14 error: the type of this value must be known in this context
src\main.rs:19 &* sx
^~~~
error: aborting due to 2 previous errors
Could not compile `test`.

To learn more, run the command again with --verbose.

我读了this chapter来自 Rust 书。我尝试像代码示例中那样连接字符串,但编译器说它不是字符串。

我在网上搜索过,但是没有Rust 1.3的例子。

最佳答案

您尝试连接两个指向字符串的指针,但这不是字符串连接在 Rust 中的工作方式。它的工作方式是消耗第一个字符串(您必须按值传递该字符串)并返回使用第二个字符串切片的内容扩展的消耗字符串。

现在做你想做的最简单的方法是:

fn get_data(&self, word: &str) -> String {
format!("{}{}{}", &self.field_1, &self.field_2, word)
}

请注意,这也将创建一个新的拥有的字符串,因为不可能从创建该字符串的范围返回一个字符串的字符串引用——它将在范围的末尾被销毁,除非它是按值返回的.

关于string - 如何将两个字符串字段与另一个字符串连接起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33444218/

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