UsedInFor.java :  » IDE-Netbeans » java » test » Java Open Source

Java Open Source » IDE Netbeans » java 
java » test » UsedInFor.java
package test;

public class UsedInFor {
    
    public static void test() {
        for (boolean condition = true; condition;) {
            condition = false;
        }
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.