ฉันได้รับข้อผิดพลาดในการทำดัชนีด้วยคำตอบที่ได้รับการยอมรับ เหตุผล: เมื่อช่วงเริ่มต้นมันจะไม่ซ้ำค่าหนึ่งโดยหนึ่งมันจะวนตามดัชนี หากคุณแก้ไขชิ้นในขณะที่อยู่ในช่วงมันจะทำให้เกิดปัญหา
คำตอบเก่า:
chars := []string{"a", "a", "b"}
for i, v := range chars {
fmt.Printf("%+v, %d, %s\n", chars, i, v)
if v == "a" {
chars = append(chars[:i], chars[i+1:]...)
}
}
fmt.Printf("%+v", chars)
คาดว่า:
[a a b], 0, a
[a b], 0, a
[b], 0, b
Result: [b]
จริง:
// Autual
[a a b], 0, a
[a b], 1, b
[a b], 2, b
Result: [a b]
วิธีที่ถูกต้อง (โซลูชัน):
chars := []string{"a", "a", "b"}
for i := 0; i < len(chars); i++ {
if chars[i] == "a" {
chars = append(chars[:i], chars[i+1:]...)
i-- // form the remove item index to start iterate next item
}
}
fmt.Printf("%+v", chars)
ที่มา: https://dinolai.com/notes/golang/golang-delete-slice-item-in-range-problem.html