为什么这是假的?我无法得到它。DataBaseHelper.getBoolean(); 是一个字符串值。在这个 if 语句中,它输出相同的结果,但它说它彼此不相等。
String a = DataBaseHelper.getBoolean(id);
String b = DataBaseHelper.getBoolean(id);
if (a==b){
newTextView.setText(DataBaseHelper.getBoolean(id) + " == " + DataBaseHelper.getBoolean(id) + " is TRUE \n");
} else {
newTextView.setText(DataBaseHelper.getBoolean(id) + " == " + DataBaseHelper.getBoolean(id) + " is FALSE \n");
}
来自 toher 类的 getBoolean 方法。
public String getBoolean(int randomIndex) {
// TODO Auto-generated method stub
open();
Cursor c = myDataBase.query(TABLE_NAME1, columns, WHATTODONOW_COLUMN_ID
+ "=" + randomIndex, null, null, null, null);
if (c != null) {
c.moveToFirst();
String text = c.getString(8);
return text;
}
closee();
return null;
}