在Golang中,删除元素的方法无法正常工作。

huangapple go评论75阅读模式
英文:

Remove element method doesnt work in Golang

问题

我有一个简单的代码用于从切片中删除元素:

package main

import "fmt"

func main() {
	values := []string{"1", "2", "3", "4", "5"}
	valuesResult := removeElementByIndex(values, 0)
	fmt.Printf("%v - %v\n", values, valuesResult)
}

func removeElementByIndex[T interface{}](a []T, i int) []T {
	return append(a[:i], a[i+1:]...)
}

但输出结果是:

[2 3 4 5 5] - [2 3 4 5]

由于某种原因,values 发生了变化,但我在方法中没有对它进行更改(我猜测)。请帮我修复它。

英文:

I have a simple code for removing element from slice:

package main

import "fmt"

func main() {
	values := []string{"1", "2", "3", "4", "5"}
	valuesResult := removeElementByIndex(values2, 0)
	fmt.Printf("%v - %v\n", values, valuesResult)
}

func removeElementByIndex[T interface{}](a []T, i int) []T {
	return append(a[:i], a[i+1:]...)
}

but output is

[2 3 4 5 5] - [2 3 4 5]

For some reason values are changing, but i didnt change it in my method (i guess). Please help me to fix it

答案1

得分: 2

你改变了原始切片。如果追加操作的结果适合切片的容量,append操作会使用原始切片。

如果你需要保持原始切片不变:

func removeElementByIndex[T interface{}](a []T, i int) []T {
    result := make([]T, len(a)-1)
    copy(result,a[:i])
    copy(result[i:],a[i+1:])
    return result
}
英文:

You did change the original slice. append operation uses the original slice if the result of the append operation fits into the capacity of the slice.

If you need the original slice unchanged:

func removeElementByIndex[T interface{}](a []T, i int) []T {
    result := make([]T, len(a)-1)
    copy(result,a[:i])
    copy(result[i:],a[i+1:])
    return result
}

huangapple
  • 本文由 发表于 2023年6月30日 06:46:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/76585020.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定