duanjian4150 2017-09-05 21:41
浏览 38
已采纳

将指针传递给Golang中的字符串数组[重复]

This question already has an answer here:

I am trying to pass string array to the function, print values, modify it and then as the function is finished print value of the string array.

Here is my sample code which does not work but present what i want to achive:

package main
import (
    "fmt"
)
func SendData(a *[]string) {
    fmt.Println(*a)
    *a = *a[:0]
}
func main() {
    var s []string
    s = append(s, "dat","boi")
    SendData(&s)
    fmt.Println(s)
}

This is the error at compilation: cannot slice a (type *[]string)

</div>
  • 写回答

1条回答 默认 最新

  • douxun1934 2017-09-05 21:54
    关注

    To fix the error, just change *a[:0] to (*a)[:0] to get the object the pointer is pointing to, and then slice that object, instead of trying to slice the pointer.

    The next is just my opinion:

    However you don't need the * on the parameter, slices contain a pointer to the underlying array, so a copy of the slice points to the same array. And if you are going to assign another thing to the slice variable I recommend returning the new slice, like this:

    package main
    import (
        "fmt"
    )
    func SendData(a []string) []string {
        fmt.Println(a)
        a = a[:0]
        return a
    }
    func main() {
        var s []string
        s = append(s, "dat","boi")
        s = SendData(s)
        fmt.Println(s)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 matlab yalmip kkt 双层优化问题
  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题