如何在java中反复停止条件执行

时间:2016-05-02 09:26:12

标签: java

else - 条件检查我的代码中的每个值,但我希望它只执行一次;这足够了。if条件通过使用布尔值工作正常。 在else - 条件如何使用。

这是我的代码:

Session session = null;
try{
Query qu = session.createSQLQuery("select plot_no from house_details where type='duplex'");
List<Long> li =  qu.list();
System.out.println("---li---"+li.toString());
boolean enteredIf = true;
for (Iterator itr = li.iterator(); itr.hasNext();) {
    String plotNo = itr.next().toString();
     if(enteredIf)
    if(plotNo.equals("501") || plotNo.equals("520") || plotNo.equals("601"){
        System.out.println("---if---");
        enteredIf=false;
        //code here
    }
    else{
        System.out.println("---else---");
        Query qu1 = session.createSQLQuery("select distinct name, houseno from house_details");
        List li1 =  qu1.list();
        for (Iterator itr1 = li.iterator(); itr1.hasNext();) {
            Object[] obj = (Object[]) itr1.next();
            String houseName = (String) obj[0];
            String houseNo = (String) obj[1];
            System.out.println("---houseName--->"+houseName);
        }
    }
}
} catch(Exception e){
e.printStackTrace();
} finally {
if(session != null){
    session.close();
}
}

输出:

---li---[501, 501, 0, 101, 520,601,601, 101, 114,102,103,104]

在我的输出中有这么多的值,很多次其他条件检查,我只想要一次执行

1 个答案:

答案 0 :(得分:0)

使用continue重新循环循环,而不会跳转到else部分或者您不希望在此次迭代中执行其余行的行。

注意:您也可以使用break;跳出循环迭代。

请参阅usage