class A { public static void main(String [] varun) { byte b = 65; char ch = b; System.out.println(ch); } }
为什么会出错:
可能丢失精度 所需的char 找到的字节
java
java ×1