cursor遍历

来源:互联网 发布:js强制转换成数字 编辑:程序博客网 时间:2024/06/03 20:42
1. 遍历
Cursor c = …;
for(c.moveToFirst(); ! c.isAfterLast(); c.moveToNext()){
//c…
}
原创粉丝点击