From 6f2de648149bcd284d739e074d10051468ead35b Mon Sep 17 00:00:00 2001 From: Allan Downey Date: Thu, 24 Mar 2022 22:10:31 +0800 Subject: [PATCH] fix(string-slice): fix wrong link --- src/basic/compound-type/string-slice.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/basic/compound-type/string-slice.md b/src/basic/compound-type/string-slice.md index 90f8fd6b..450fefb0 100644 --- a/src/basic/compound-type/string-slice.md +++ b/src/basic/compound-type/string-slice.md @@ -95,7 +95,7 @@ let slice = &s[..]; > ``` > > 因为我们只取 `s` 字符串的前两个字节,但是本例中每个汉字占用三个字节,因此没有落在边界处,也就是连 `中` 字都取不完整,此时程序会直接崩溃退出,如果改成 `&s[0..3]`,则可以正常通过编译。 -> 因此,当你需要对字符串做切片索引操作时,需要格外小心这一点, 关于该如何操作 UTF-8 字符串,参见[这里](#操作-utf8-字符串) +> 因此,当你需要对字符串做切片索引操作时,需要格外小心这一点, 关于该如何操作 UTF-8 字符串,参见[这里](#操作-utf-8-字符串) 字符串切片的类型标识是 `&str`,因此我们可以这样声明一个函数,输入 `String` 类型,返回它的切片: `fn first_word(s: &String) -> &str `。 @@ -424,10 +424,11 @@ for b in "中国人".bytes() { 这个模式对编写 Rust 代码的方式有着深远的影响,在后面章节我们会进行更深入的介绍。 - ## 课后练习 > Rust By Practice,支持代码在线编辑和运行,并提供详细的[习题解答](https://github.com/sunface/rust-by-practice)。 +> > - [字符串](https://zh.practice.rs/compound-types/string.html) > - [切片](https://zh.practice.rs/compound-types/slice.html) -> - [String](https://zh.practice.rs/collections/String.html) \ No newline at end of file +> - [String](https://zh.practice.rs/collections/String.html) +