final String SEX1 = "男"; final String Sex2 = "女"; System.out.println(SEX1+SEX2); 报错
你变量名写错了,定义时写的是Sex2 ,使用时写的是SEX2
字符型的也不行吗?
变量与变量之间用+会做算术运算