我想知道为什么这个片段有效.
char ch1; ch1 = 'a' + 1; System.out.println(ch1);
在第2行中,不是将右侧提升为int然后将int赋值给char,我们是否需要显式转换?
同样,我理解当你执行ch1 = 65时会发生什么.但是由于Java不允许自动向下类型转换,我们不需要从int到char的显式转换吗?
解决方法
因为
Java Language Specification说:
In addition,if the expression is a constant expression (§15.28) of type byte,short,char or int :
A narrowing primitive conversion may be used if the type of the variable is byte,or char,and the value of the constant expression is representable in the type of the variable.
所以你是正确的,因为表达式被提升为int,但因为它是一个常量表达式,所以不需要强制转换.如果它涉及一个变量(或者它的值不适合char),那就不一样了.
对于这类问题,最好立即查看语言规范,因为它是权威的来源,对于规范来说非常易读.