我正在循环一个列表以从列表数组中获取特定的 id:
这是我正在循环的列表:
for(int i =0 ;i<listOfIds.size();i++) {
System.out.println("list of post_ids " + listOfIds.get(i));
}
循环后的输出是:
list of post_ids Model: com.soul.seeker.models.PostsCategories, table: 'posts_categories', attributes: {post_id=184}
list of post_ids Model: com.soul.seeker.models.PostsCategories, table: 'posts_categories', attributes: {post_id=185}
现在我想访问特定元素,即attributes: {post_id=185}
. 我怎么做?
更新:类 List 的类型LazyList
来自http://javalite.github.io/activejdbc/snapshot/