我在我的应用程序中使用了这样一种机制:从字符串数组中获取随机字符串并将其放入 SQLite 数据库中。然后我将这个新字符串发送到小部件和 ArrayList 以获取 ListActivity 表示。在将新对象放入数据库之前,我需要检查它是否不是具有相同文本字段值的对象。我的报价对象:
public class Quote {
private String text;
private String date;
public Quote(String text, String date)
{
this.text = text;
this.date = date;
}
public Quote(){}
public String getText()
{return this.text;}
public String getDate()
{return this.date;}
public void setText(String text)
{
this.text = text;
}
public void setDate(String date)
{
this.date = date;
}
@Override
public String toString() {
return text + "" + date;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final Quote other = (Quote) obj;
if (text.equalsIgnoreCase(other.text))
return false;
return true;
}
@Override
public int hashCode() {
int hash = 7;
hash = 89 * hash + (this.text != null ? this.text.hashCode() : 0);
hash = 89 * hash + (this.date != null ? this.date.hashCode() : 0);
return hash;
}
}
这就是我通过检查机制获得随机字符串的方式:
private String getRandomString(Context context)
{
String l = "";
String[] a = context.getResources().getStringArray(R.array.quotes);
l = a[rgenerator.nextInt(a.length)];
Quote quote = new Quote(l,mydate);
ArrayList<Quote> intermediate = getQuotes(context);
if (intermediate.contains(quote))
l=getRandomString(context);
return l;
}
但是当我这样做时,我得到了 StackOverflowError。我该如何解决?