「Apache Groovy」- java.lang.NoSuchMethodError: x.x.x: method <init>()V not found @20210
2021-03-03 01:28
阅读:360
问题描述
在执行 Groovy 代码中,产生如下错误:
ava.lang.NoSuchMethodError: com.lispstudio.model.TeamLispstudio: method()V not found
问题原因
在继承父类之后,没调用父类的构造函数。
解决方法
有两种解决方法:1)调用与父类相同的构造函数;2)使用 InheritConstructors 注解;
调用与父类相同的构造函数
class Creature { Creature (String feature) {} } class Humman extends Creature{ Humman (String feature) { super(feature) } } new Humman("legs")
使用 InheritConstructors 注解
class Creature { Creature (String feature) {} } @groovy.transform.InheritConstructors class Humman extends Creature{ } new Humman("legs")
相关文章
「Groovy」- Unable to load extension class
参考文献
InheritConstructors (groovy 2.4.9 API)
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:「Apache Groovy」- java.lang.NoSuchMethodError: x.x.x: method <init>()V not found @20210
文章链接:http://soscw.com/index.php/essay/59296.html
文章标题:「Apache Groovy」- java.lang.NoSuchMethodError: x.x.x: method <init>()V not found @20210
文章链接:http://soscw.com/index.php/essay/59296.html
评论
亲,登录后才可以留言!