这里为什么不可以这样打?
public class HelloWorld{
public static void main(String[] args) {
final char Sex1='男';
final char Sex2='女';
System.out.println(Sex1+Sex2);
}
}
运行成功但是为什么输出的是一串数字而不是 "男女"
public class HelloWorld{
public static void main(String[] args) {
final char Sex1='男';
final char Sex2='女';
System.out.println(Sex1+Sex2);
}
}
运行成功但是为什么输出的是一串数字而不是 "男女"
2019-09-03
举报