标签: java types
为什么从byte到char的转换需要显式转换?
byte bByte = 65; char cChar = (char)bByte;
正如你在这里看到的那样,字节小于char,但我仍然需要进行显式转换?这是为什么?有人可以解释一下吗?