dongzhou4727 2018-03-12 23:54
浏览 48

如何在Golang中将地图解压缩为字符串格式的关键字参数?

In Python, to format a string with a dictionary, one can simply do:

geopoint = {
  'latitude': 41.123,
  'longitude':71.091
}

print('{latitude} {longitude}'.format(**geopoint))

The output will be 41.123 71.091. How do I achieve the same keyword unpacking of maps for string formatting in Go?

EDIT: Sorry if this was unclear in the question, but what I want to do is, like in Python, provide the keys for the values inside the format string.

  • 写回答

3条回答 默认 最新

  • dongtuo2373 2018-03-13 00:02
    关注

    I recommend using a struct to have your fields and then add method String.

    code: https://play.golang.org/p/ine_9GwK5o-

    package main
    
    import (
        "fmt"
    )
    
    
    type Point struct {
       latitude float64
       longitude float64
    }
    
    func (p Point) String() string {
       return fmt.Sprintf("%f %f", p.latitude, p.longitude)
    }
    
    func main() {
    
        geoP:= Point{latitude:41.123, longitude:71.091}
    
        fmt.Println(geoP)
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘