| 
What this is
 Other links
 The source code
public class BBB {
	public void foo() {
		int i= 0;
		BBB b= new BBB();
		BBB[] bb= new BBB[10];
		if (i == 0 && i == 10 && b instanceof BBB)
			foo();
		while(i++ == 10) {
			foo();
		}
		i--;
		
		while(i++ == 10)
			foo();
		i--;
		
		do {
		} while (i < 10);	
		
		for (int x= 0, o= 0; x < 10; x++, o++);
		 {
			foo();
			int z;//= x;
		}
		
		try {
			foo();
		} catch (Exception e) {
		} finally {
		}
		
		switch (i) {
			case 10:
				foo();
			case 20:
				foo();
			default:
				foo();
		}
	}
	public int g() {
		g();
		return 1;
	}
}
 | 
| ... this post is sponsored by my books ... | |
         
           #1 New Release!  | 
      
         
           FP Best Seller  | 
  
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse 
URI on this website is
paid back to open source projects.