dongtan4046 2017-06-26 18:26
浏览 66
已采纳

如何在Golang中通过引用传递结构类型的接口?

I need to pass an interface of a struct type by reference as shown below. Since, I can't use pointers of interface to struct type variables, how should I change the below code to modify te value to 10?.

package main

import (
    "fmt"
)

func another(te *interface{}) {
    *te = check{Val: 10}
}

func some(te *interface{}) {
    *te = check{Val: 20}
    another(te)
}

type check struct {
    Val int
}

func main() {
    a := check{Val: 100}
    p := &a
    fmt.Println(*p)
    some(p)
    fmt.Println(*p)
}

Thanks!

P.S I have read that passing pointers to interfaces is not a very good practice. Kindly let me know what could be a better way to handle it

  • 写回答

1条回答 默认 最新

  • dongqiang2024 2017-06-26 18:37
    关注

    So you're using an interface, and you need some sort of guarantee that you can set the value of a member of the struct? Sounds like you should make that guarantee part of the interface, so something like:

    type Settable interface {
        SetVal(val int)
    }
    
    func (c *check) SetVal(val int) {
        c.Val = val
    }
    
    func some(te Settable) {
        te.SetVal(20)
    }
    
    type check struct {
        Val int
    }
    
    func main() {
        a := check{Val: 100}
        p := &a
        some(p)
        fmt.Println(*p)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 win2012 iscsi ipsec
  • ¥15 封装的 matplotlib animation 不显示图像
  • ¥15 python摄像头画面无法显示
  • ¥15 关于#3d#的问题:d标定算法(语言-python)
  • ¥15 cve,cnnvd漏洞扫描工具推荐
  • ¥15 图像超分real-esrgan网络自己训练模型遇到问题
  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)