gpt4 book ai didi

android - 在 sqlite for android 的选择参数参数中使用 int 值

转载 作者:太空狗 更新时间:2023-10-29 16:05:11 26 4
gpt4 key购买 nike

这是在使用 Integer.toString() 之前将 int 转换为字符串的正确方法吗?在不需要转换的情况下,还有另一种方法可以做到这一点吗?

例子:

 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);

最佳答案

是的,您可以使用以下方法将int转换为String

int i=10;
String[] str = new String[]{String.valueOf(i)};
String[] str1 = new String[]{Integer.toString(i)};

关于android - 在 sqlite for android 的选择参数参数中使用 int 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17481981/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com