當前位置:成語大全網 - 書法字典 - java中26個字母的統壹代碼的大小順序是如何排列的?

java中26個字母的統壹代碼的大小順序是如何排列的?

Java以Unicode編碼並與ASCII代碼兼容,因此它與ASCII代碼的順序相同。您可以通過下面的代碼查看輸出。

公共?上課?JavaUnicode

{

公共?靜電?虛空?main(String【】?參數)

{

for(char?ch =‘a‘;ch & lt=‘z‘;ch++)

system . out . print((int)ch+“?“);

system . out . println();

for(char?ch =‘A‘;ch & lt=‘Z‘;ch++)

system . out . print((int)ch+“?“);

}

}