slice 允许你引用集合中一段连续的元素序列,而不用引用整个集合。slice 是一类引用,所以它没有所有权。

字符串 slice

字符串 slice(string slice)是 String 中一部分值的引用,它看起来像这样:

  1. let s = String::from("hello world");
  2. let hello = &s[0..5];
  3. let world = &s[6..11];


image.png