1. ..y 等价于 0..y
    2. x.. 等价于位置 x 到数据结束
    3. .. 等价于位置 0 到结束
    4. let s1 = String::from("hello");
    5. let s2 = &s1[..];