} public
public class MyFirstJavaApp { public static void main(String[] args) { System.out.println("This is My First Java Application!"); }
}
1.1.3 Java
2"==""="
1.3.1
1.3.1
1boolean boolean
2"&""&&" "&" "&&"false "|""||" "&""&&"
1.3.1
&,|,^
1&1 0
0|0 1
^1 0
1.3.1
<< >> >>>
1.3.1
byteshortcharintlong intint inta>>bb32 a>>33a>>1a>>32 a longa>>b b64 a>>1 x>>1x/2x<<2x*4 n2n n2n 2xy = 1<< x
1.3.3
switch:
switch(x){//xintbytecharshort case 1:System.out.println("Monday");
break;
case 2:System.out.println("Tuesday");