我有一个有两个构造函数的类:
@JsType
public class Dog implements Animal {
String name;
public Dog() {
this.name = "Scooby Doo";
}
public Dog(String name) {
this.name = name;
}
}
运行 gwt compile [With GWT-dev 2.8] 时出现以下错误
[ERROR] Constructor 'Dog(String)' can be a JsConstructor only if all constructors in the class are delegating to it.
我一直在努力解决这个错误,但没有太大成功。我不确定如何委托给其他构造函数。
很感谢任何形式的帮助!
谢谢!