链接没有句点的方法调用时“不带参数”

时间:2013-11-23 14:20:43

标签: scala

我有一个班级:

class Greeter {
    def hi = { print ("hi"); this }
    def hello = { print ("hello"); this }
    def and = this
}

我想将new Greeter().hi.and.hello称为new Greeter() hi and hello

但结果是:

error: Greeter does not take parameters
              g hi and hello   
                ^
(note: the caret is under "hi")

我认为这意味着Scala将hi作为this并尝试通过and。但是and不是一个对象。我可以传递给apply以将调用链接到and方法?

1 个答案:

答案 0 :(得分:10)

您不能像这样链接无参数方法调用。没有圆点和圆括号的一般语法是(非正式地):

object method parameter method parameter method parameter ...

当您撰写new Greeter() hi and hello时,and被解释为方法hi的参数。

使用postfix语法,可以执行:

((new Greeter hi) and) hello

但是除了你绝对需要这种语法的专业DSL之外,这并不是真正推荐的。

这是你可以玩的东西,以获得你想要的东西:

object and

class Greeter {
  def hi(a: and.type) = { print("hi"); this }
  def hello = { print("hello"); this }
}

new Greeter hi and hello