gpt4 book ai didi

scala - 如何在 Scala 中定义函数的类型?

转载 作者:行者123 更新时间:2023-12-03 04:40:51 24 4
gpt4 key购买 nike

我希望有一种方法可以在 Scala 中定义函数的类型。

例如,假设我想要一个接受两个 Int 并返回一个 bool 值的函数,我可以定义一个使用如下函数的函数:

def checkInts(f: (Int,Int) => Boolean) = {
// do stuff
}

有没有办法定义f的类型?然后我可以做这样的事情:

def checkInts(f: MyFunctionType)

def checkInts(f: Option[MyFunctionType])

最佳答案

trait Foo {
type MyFunction = (Int,Int) => Boolean

def checkInts(f: MyFunction)
def checkInts(f: Option[MyFunction])
}

关于scala - 如何在 Scala 中定义函数的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1853868/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com