作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这有效
def func(f: => Int) = f
type EmptyFunct = => Int
type EmptyFunct = (=> Int)
最佳答案
=> Int 不完全是一个没有参数的函数,它是一个 Int 参数,带有按名称传递约定调用。 (当然,这是相当不错的一点,因为它是通过传递一个不带参数的函数来实现的)。
没有参数的函数写成() => Int
.你可以做type EmptyFunct = () => Int
.
它不是一种类型。在 func 中,f 将被输入为 Int。 () => Int 类型的参数不会。
def func(f: => Int) = f *2
func (: => Int) Int
def func(f: () => Int) : Int = f*2
error: value * is not a member of () => Int
关于scala - 如何为无参数函数定义scala类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7228829/
我是一名优秀的程序员,十分优秀!