我正在遍历列表列表。在我的代码中,listofuserdetailsperAccount
是List<List>
。我正在考虑以下两种方法,请让我知道哪种方法正确,更有效,并且应该在Java编码中遵循。
方式1 -----
for(int i=0;i<=listofuserdetailsperAccount.size();i++){
List list=(List) listofuserdetailsperAccount.get(0);
}
方式2 ---
for(int i=0;i<=listofuserdetailsperAccount.size();i++){
List list= new ArrayList();
list=(List) listofuserdetailsperAccount.get(0);
}
最佳答案
每个循环我都会去
for( List userDetailsPerAccount : listOfUserDetailsPerAccount ) {
//anything you want to do with userDetailsPerAccount
}