如何计算以下Java程序的输出?
class hello { public static void main(String args[]){ short a=(byte)32767; System.out.println(a); } }
java
java ×1