作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在玩 Scala 的分布式 Actor 。非常好。
我有一个执行传入函数对象的服务器。
例如,客户有
object Tasks {
def foo = {Console.println("I am Foo")};
def bar = {Console.println("I am Bar");}
}
// In client actor...
...
server ! Tasks.foo _
...
react {
case task:(()=>Unit) =>
task()
scalac
输出的警告消息感到困惑。对于服务器代码:
warning: non variable type-argument Unit in type pattern is unchecked since it is eliminated by erasure
case task:(()=>Unit) =>
^
Unit
类型和
()=>Unit
类型的零参数函数之间的区别。只是尝试匹配
task:Unit
中的
react
是无警告的,但实际上并没有匹配传入的任务。)
最佳答案
你真的很匹配这个:
case task:Function0[Unit] => task()
case task:Function0[_] => task()
关于scala - scala : mystified by warning 中的模式匹配零参数函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1534702/
我在玩 Scala 的分布式 Actor 。非常好。 我有一个执行传入函数对象的服务器。 例如,客户有 object Tasks { def foo = {Console.println("I a
我是一名优秀的程序员,十分优秀!