使用多个参数列表调用 Scala 构造函数
在 Scala 中,我可以创建一种采用多个参数列表的方法:
def myMethod(value: Int)(fn: (Int) => Unit) {
fn(value)
}
并像这样调用它:
myMethod(10) { value => println(value) }
如何使用类构造函数做同样的事情?我怎么称呼它?
In Scala, I can create a method that takes more than one argument list:
def myMethod(value: Int)(fn: (Int) => Unit) {
fn(value)
}
and call it like this:
myMethod(10) { value => println(value) }
How can I do the same thing with a class constructor? How do I call it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这有效。
This works.