gpt4 book ai didi

gwt:如何编写不会导致 "The method clone() is undefined for the type Object"错误的 clone() 方法?

转载 作者:行者123 更新时间:2023-12-04 20:19:07 25 4
gpt4 key购买 nike

我正在使用 GWT 2.4。我有这个类,它覆盖了 clone() 方法......

public class Attribute implements Serializable, Cloneable {
...

public Object clone() {
Object ret = null;
try {
ret = super.clone();
} catch (CloneNotSupportedException e) {
} // try
return ret;
}

遗憾的是,当我尝试运行 GWT 测试类时,出现编译错误
[ERROR] Line 113: The method clone() is undefined for the type Object

任何人都知道如何重写上述内容以避免编译错误同时保留功能?谢谢, - 戴夫

最佳答案

Object.clone GWT 编译器不支持。如果你真的需要它的支持,你可以按照这个 GWT 问题中建议的解决方法进行操作:http://code.google.com/p/google-web-toolkit/issues/detail?id=5068

关于gwt:如何编写不会导致 "The method clone() is undefined for the type Object"错误的 clone() 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8732453/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com