英文:
Why does math.Pow10(e int) returns float64 rather than int64?
问题
由于参数 e
是 int
类型,为什么不直接返回 int64
呢?这里有什么特殊的原因吗?
英文:
Since parameter e
is int
, why not just return an int64
? Is there any special reason for this?
答案1
得分: 7
两个原因:
首先,参数可能是负数,此时结果是介于0
和1
之间的分数,因此需要返回一个float64
类型的值。
fmt.Println(math.Pow10(-1))
输出结果(在Go Playground上尝试):
0.1
其次,几乎每个math
包中的函数都返回float64
类型的值,如果添加一个不返回该类型的函数,将会破坏“一致性”。
[*] 一些例外包括Float32frombits()
和llogb()
等函数,其中偏离是合理的。
英文:
2 reasons:
First, the parameter may be negative too, in which case the result is a fraction number between 0
and 1
, so a float64
return value is not just justified but needed.
fmt.Println(math.Pow10(-1))
Output (try it on the Go Playground):
0.1
Second, almost<sup>*</sup> every function of the math
package returns value(s) of type float64
, adding one that doesn't would break "consistency".
<sup>[*] Few exceptions include functions like Float32frombits()
and llogb()
where the deviation is justified.</sup>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论