标签: groovy
为什么在方法B和C没问题的情况下不编译方法A?
class A { methodA() { } void methodB() { } static methodC() { } }
答案 0 :(得分:5)
如果您没有为方法声明类型,则需要在groovy中使用“def”修饰符:
class A { def methodA() { } }
应该有用。