gpt4 book ai didi

android - 错误 : type SugarRecord does not take parameters

转载 作者:行者123 更新时间:2023-11-29 15:12:49 26 4
gpt4 key购买 nike

在我克隆存储库并将库文件夹作为我的 AndroidStudio 项目中的模块导入后,我在编译时遇到此错误(我需要对库进行一些更改,因此我必须克隆它)

public class UserBean extends SugarRecord<UserBean> implements Bean, Serializable {
...
}

当我查看我的 SugarRecord 时,我也没有看到任何通用参数

public class SugarRecord {

protected Long id = null;
...
}

谁能帮忙?

最佳答案

事实证明,SugarRecord 中的 Generic 参数不再需要了。

关于android - 错误 : type SugarRecord does not take parameters,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28703734/

26 4 0