dragonlew9876 2017-01-02 07:19
浏览 908
已采纳

Golang的类型系统行为-将int除以隐式float

I was experimenting lately with golang's type system and encountered an interesting (or not) behaviour related to floats:

package main

import (
    "fmt"
)

func main() {
    doesntWork()
    works()
}

func doesntWork() {
    x := 1234
    y := x / 100000.0
    s := fmt.Sprintf("%.8f", y)
    fmt.Printf("%s
", s)
}

func works() {
    x := 1234
    y := float64(x) / 100000.0
    s := fmt.Sprintf("%.8f", y)
    fmt.Printf("%s
", s)
}

Go Playground

I think that in the case presented in the example above, in procedure doesntWork(), golang does not automatically "assume" float32/64 when dividing an int by an implicit float? Is that correct? Could anyone point me towards some docs or specs where I could learn more about how golang behaves in situations like the one above?

  • 写回答

1条回答 默认 最新

  • douju6752 2017-01-02 07:45
    关注

    Here 10000.0 is not float64/32 it is a numeric constant. Go will assume the type of x in this case for the expression and truncate the constant 100000.0 to integer

    func doesntWork() {
        x := 1234
        y := x / 100000.0
        s := fmt.Sprintf("%.8f", y)
        fmt.Printf("%s
    ", s)
    }
    

    If you update it to

    func doesntWork() {
        x := 1234
        y := x / float64(100000.0)
        s := fmt.Sprintf("%.8f", y)
        fmt.Printf("%s
    ", s)
    }
    

    it will error out saying

     invalid operation: x / float64(100000) (mismatched types int and float64)
    

    Similarly if you change the constant to 100000.111 where truncating to integer will no longer give the same value it will error out

    func doesntWork() {
        x := 1234
        y := x / 100000.1
        s := fmt.Sprintf("%.8f", y)
        fmt.Printf("%s
    ", s)
    }
    

    It will error out saying

    constant 100000 truncated to integer
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP