在使用 Integer.toString()時將int值轉換成string,在不需要轉換時有沒有其他方式?
舉個例子:
int value = 10;
Cursor cursor = database.query(
"TABLE_X",
new String[] { "COLUMN_A", "COLUMN_B" },
"COLUMN_C = ?",
new String[] { Integer.toString(value) },
null,
null,
null);
加個空字符串拼接就好
數量大就用StringBuilder拼接
""+value