KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > CondAndTest3


1 public class CondAndTest3 {
2
3     public static void main(String JavaDoc [] args){
4     
5         boolean y = true;
6         if (false && y){
7             boolean x = true;
8         }
9     }
10 }
11
Popular Tags