在Groovy脚本中调用内部类方法?

时间:2013-11-17 17:20:25

标签: class methods groovy

我一直在寻找一些看似微不足道的答案......

无论如何,这是我的代码:

class Test {
   def done() {
      println("Well done, you've completed the test!")
   }
}

def test = new Test()
test.done()

然而没有任何东西被打印出来。

1 个答案:

答案 0 :(得分:0)

哦傻嘘嘘!

我正在解析脚本而不是评估它导致它没有正确执行...