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]
在我的输出中有这么多的值,很多次其他条件检查,我只想要一次执行
答案 0 :(得分:0)