为了显示 char 的默认值,我编写了如下代码:
public class TestChar {
static char a;
public static void main(String[] args) {
System.out.println("."+String.valueOf(a)+".");
System.out.println("the default char is "+a);
}
}
但是控制台输出很混乱。第一个是“..” ,但是第二个是“默认字符是[](像这样,我不知道如何描述它。)”为什么?谢谢帮助