dourao1968 2019-06-26 08:25
浏览 254
已采纳

使用golang省略函数参数中的数组类型[重复]

This question already has an answer here:

I'm writing a write method, to write an array of value to InfluxDB

What I would like is to be able to have something like:

func (influxClient *InfluxClient) Write(myArray []interface{}) (error) {
    fmt.Print(myArray)
    // Insert into DB
    return nil

}

Where myArray could be an array with any objects inside

I tried to use myArray []interface{} to ommit myArray's type, but it doesn't work, I get:

Cannot use 'meters' (type []models.Meter) as type []interface{}

Is it possible to achieve it ?

How should I do ?

</div>
  • 写回答

2条回答 默认 最新

  • dtn55928 2019-06-26 09:12
    关注

    This happens because []models.Meter and []interface{} are two different types for the Go compiler.

    Using interface{} is not a best-practice typically. It would be better to define your own type and use that instead.

    Having said that, the quickest solution for your case should be to make Write function a variadic one. Like the example below.

    https://play.golang.org/p/KzzFMAjQvRa

    func Write(myArray ...interface{}) (error) {
        fmt.Printf("Slice: %v
    ", myArray)
        // Insert into DB
        return nil
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器