?? variables.java
字號:
public class Variables
{
public static void main(String[] args)
{
byte b=10;
short s=0677;
int i=66666;
long l=0xfffa;
float f=0.12345f;
double d=1.234E5;
char c='a';
boolean b2=true;
System.out.println("b="+b);
System.out.println("s="+s);
System.out.println("i="+i);
System.out.println("l="+l);
System.out.println("f="+f);
System.out.println("d="+d);
System.out.println("c="+c);
System.out.println("b2="+b2);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -