gpt4 book ai didi

java - moveToNext() 为假

转载 作者:太空狗 更新时间:2023-10-29 13:42:13 25 4
gpt4 key购买 nike

//row --> 2
int row = mCursor.getCount();
for (int i = 0; i < row; i++) {
if (mCursor.moveToPosition(i)){
int val = mCursor.getInt(mCursor.getColumnIndexOrThrow(UTILI_COLLOC_ID_UTILI))
}
}

我不明白,因为我的查询中有 2 行。但是当我想用“mCursor.moveToPosition(i)”读取第二行时,它是错误的...为什么?

最佳答案

我认为你可以安全地使用

while(mCursor.moveToNext()) {
// code
}

代替for循环

关于java - moveToNext() 为假,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4310345/

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