// Demonstrate char data type
class CharDemo {
public static void main(string args[]) {
char ch1, ch2;
ch1 = 88; // code for x
ch2 = 'y';
System.out.print("ch1 and ch2: ");
System.out.println(ch1 + "" + ch2);
}
}
答案 0 :(得分:0)
它是分配给变量的字符的ASCII值,因此它不是88.
在ASCII表中,88代表x
答案 1 :(得分:0)
88如何成为X
88是引用ASCII表(简称为put)的char代码。如果您需要完整的char代码列表,请查看ACSII表like this one
如果你在图表上看,88变成大写X,然后100变成小写d
答案 2 :(得分:0)
// Demonstrate char data type
class CharDemo {
public static void main(string args[]) {
char ch1, ch2;
ch1 = 88; // 88 is the ASCII code for the character X.
ch2 = 'y';
System.out.print("ch1 and ch2: ");
System.out.println(ch1 + "" + ch2);
}
}
通过将字符的ASCII值分配给char变量,当您将其打印到控制台时,您将获得该特定值的相应字符。