5

我有一个抽象的 java 类,它有一个构造函数,我正在从一个 groovy 类扩展它。(这个想法是将java类作为一个契约保留在应用程序中,并加载实现某些构造函数和方法的外部groovy类)

如何在 Groovy 中强制实现抽象超类的构造函数?Groovy 是否允许强制实现抽象父类的构造函数?

问题是 Eclipse Groovy IDE 并没有强迫我在子类中实现父类的构造函数,我认为 Groovy 会自动创建它,所以这就是不强制它的原因。但是,在运行时尝试使用 java 反射获取构造函数失败,如果我没有在子类中定义父构造函数,它会失败。

(我在 Groovy 的经验为 0)

4

1 回答 1

5

它看起来像是编译器中未经检查的情况。反编译后,扩展类得到一个空的构造函数。测试应该让您有所了解,因为这种情况在运行时不起作用。

我不知道如何使用这个类;我尝试了我知道的方法:

abstract class AbstractClass {
  String string
  Integer integer
  AbstractClass(String string, Integer integer) {
    this.string = string
    this.integer = integer
  }
}

class ImplClass extends AbstractClass { }

// every constructor fails
abs1 = new ImplClass('a', 1)

abs2 = [string: 'b', integer: 2] as ImplClass

abs3 = new ImplClass(abs: 'c', a: 3)

abs4 = ImplClass [string:'d', integer:4]

他们都没有在运行时工作,但编译得很好;-)。这种情况更多的是关于编译错误与运行时错误。也许填写JIRA?

另一方面,如果您需要继承构造函数,则可以@groovy.transfom.InheritConstructors在扩展类中进行。这样,您将拥有构造函数,而无需super()显式调用。

于 2012-09-08T16:00:41.737 回答