?? simpletypes.java
字號:
//SimpleTypes.java
//Java中的數據類型
public class SimpleTypes
{
public static void main(String args[])
{
byte a=0x44;
short b=044;
int c=1000000;
long d=0xfffL;
char e='A';
float f=0.45F;
double g=0.7E-5;
boolean h=true;
System.out.println("a="+a);
System.out.println("b="+b);
System.out.println("c="+c);
System.out.println("d="+d);
System.out.println("e="+e);
System.out.println("f="+f);
System.out.println("g="+g);
System.out.println("h="+h);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -