mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
353 B
8 lines
353 B
3 years ago
|
# 字符串
|
||
3 years ago
|
|
||
3 years ago
|
Rust 有两种字符串类型,一种是字符串切片(`&str`),另一种是拥有所有权的字符串(`String`)。我们不打算向你说明何时使用其中哪一种,但我们将为你讲解如何区分和创建它们,并灵活使用。
|
||
3 years ago
|
|
||
3 years ago
|
## 更多信息
|
||
3 years ago
|
|
||
|
- [Strings](https://doc.rust-lang.org/book/ch08-02-strings.html)
|