编码:
double indSRate[] = new double[c.getCount()];
indSRate[e++] = c.getDouble(c.getColumnIndex("s_rate"));
if (String.valueOf(indSRate[s]) == null) {
Log.d("Special Rate", String.valueOf(indSRate[s++]));
}
用户在编辑文本字段中将 s_rate 列中的字段留空。我是否以某种方式将其变成了双倍?
在循环内部,如果字段为空,我想做某些事情,如果不是,我想做其他事情。但它似乎是 0 或更大?我无法测试它是“0”或不同的东西。我必须在 isEmpty 之间进行测试吗?