Because For loops are vastly superior to If statements

Site menu:

Topics

Recent Posts

Blog

 

July 2010
M T W T F S S
« Jun    
 1234
567891011
12131415161718
19202122232425
262728293031  

Past Posts

Links:

Tag: For Loop

Because For loops are vastly superior to If statements

July 25th, 2008 by Scott Selikoff

Because For loops are vastly superior to If statements I give my own WTF for the day: private boolean someMethod() {    int count = 0;    ResultSet rs = statement.executeQuery("select count(*) FROM …");    for ( ; rs.next(); ) {       count = rs.getInt(1);       break;    }    if [...]