英文:
The Scala equivalent to Go's math.Nextafter
问题
我想知道Scala或者它的一些著名的数学库(例如Spire)是否有类似于Go的math.Nextafter
函数的等价物。
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("现在你有%g个问题。",
math.Nextafter(2, 3))
}
(来自http://tour.golang.org/#4)
如果没有的话,最“Scala”的方法是什么来实现相同的功能?
英文:
I was wondering if Scala or one of its well known math libraries (e.g. Spire) has an equivalent to Go's math.Nextafter
function
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("Now you have %g problems.",
math.Nextafter(2, 3))
}
(From http://tour.golang.org/#4)
And if not, what is the most "Scala" way to get the same functionality?
答案1
得分: 4
这是Java的Math
库的一部分:
scala> java.lang.Math.nextAfter(2.0,3)
res0: Double = 2.0000000000000004
英文:
It's part of the Java Math
library:
scala> java.lang.Math.nextAfter(2.0,3)
res0: Double = 2.0000000000000004
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论