Day03字符拓展

//字符拓展
char c1 = 'A'; 
char c2='中'; 
System.out.println(c1); 
System.out.println((int)c1);//强制換行 
System.out.println(c2); 
System.out.println((int)c2);//强制換行 
//所有的字符本是数字 
//编码    Unicode表: (97= a 65=A)   0-65536 ExceL 2的16次方=65536 

char c3 ='\u0061'; 
System.out.printn(c3); //a

字符拓展

posted @ 2023-12-18 17:57  1hahahahahahahaha  阅读(2)  评论(0编辑  收藏  举报