F# – 乘以float乘以int

前端之家收集整理的这篇文章主要介绍了F# – 乘以float乘以int前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
可能是一个愚蠢的问题,但我刚刚开始使用F#而且我遇到了一些问题.

说我有这样的功能

let multiplyByTwo x = x * 2

当我这样称呼时:

let result = multiplyByTwo 5

一切都好,结果是10.

当我这样称呼时:

let result = multiplyByTwo 2.5

我希望得到5或5.0.但实际结果如下:

let result = multiplyByTwo 2.5;;
———————————^^^

stdin(4,28): error FS0001: This expression was expected to have type

06003

but here has type

06004

因为我希望这个函数有点通用(即接受浮点数和整数),我不喜欢这个.我的问题当然是:如何解决这个问题?

解决方法

let inline mulBy2 x = (float x) * 2.0

let a = mulBy2 3 // 6.0 : float
let b = mulBy2 2.5 // 5.0 : float
let c = mulBy2 "4" // 8.0 : float
原文链接:https://www.f2er.com/css/215604.html

猜你在找的CSS相关文章