How to Iterate through List of Object arrays

前端 未结 3 1559
[愿得一人]
[愿得一人] 2020-12-16 18:38

So right now I have a program containing a piece of code that looks like this...

Criteria crit = session.createCriteria(Product.class);
ProjectionList projLi         


        
3条回答
  •  隐瞒了意图╮
    2020-12-16 19:37

    You could use Generic in List and for each but for current code you could do following to iterate

    for(int i = 0 ; i < results.size() ; i++){
     Foo foo = (Foo) results.get(i);
    
    }
    

    Or better to go for readable for-each loop

    for(Foo foo: listOfFoos){
      // access foo here
    }
    

提交回复
热议问题