gpt4 book ai didi

Android 入门 Sugar ORM

转载 作者:可可西里 更新时间:2023-10-31 22:04:22 26 4
gpt4 key购买 nike

我是 SugarORM 的新手,我想在我的应用程序中使用这个库。设置此库元标记后,我必须为所有类扩展 SugarRecord,为此我将创建新类作为此示例中的产品

@Table
public class ProductTable {
private String id;
private String count;

public ProductTable() {
}

public ProductTable(String id, String count) {
this.id = id;
this.count = count;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public String getCount() {
return count;
}

public void setCount(String count) {
this.count = count;
}
}

对于 Extend SugarRecord,我希望有类作为这个示例:

public class ProductModel extends SugarRecord<ProductModel> {
String title;
String edition;

public ProductModel(){
}

public ProductModel(String title, String edition){
this.title = title;
this.edition = edition;
}
}

但是我得到这个错误:

Error:(9, 46) java: type com.orm.SugarRecord does not take parameters

对于这一行:

public class ProductModel extends SugarRecord<ProductModel> {

我正在使用这个 Document

最佳答案

您不必扩展 SugarRecord<ProductModel>不再是SugarRecord会做的。

关于Android 入门 Sugar ORM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29775796/

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