?? app3_6.java
字號:
// app3_6,字符類型的打印
public class app3_6
{
public static void main(String args[])
{
char ch1=97;
char ch2='a';
char ch3='\u0061';
System.out.println("ch1="+ch1);
System.out.println("ch2="+ch2);
System.out.println("ch3="+ch3);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -