我开发了一个应用程序,我在数据类的帮助下从Firebase检索数据。问题是我检索的数据可以是字符串或数字(int或long)或两者的组合。我已经将数据类中的变量声明为String类型,因此它适用于String数据检索,但是当我尝试检索数字时应用程序崩溃了。这是数据类
public class Choices {
private String a, b, c, d;
public Choices() {
}
public Choices(String a, String b, String c, String d) {
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
public String getA() {
return a;
}
public void setA(String a) {
this.a = a;
}
public String getB() {
return b;
}
public void setB(String b) {
this.b = b;
}
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
public String getD() {
return d;
}
public void setD(String d) {
this.d = d;
}
}
我只是想知道有没有什么办法可以设计数据类,它可以处理字符串和数字数据。