第五十八道Java小问题
public class Test {public static void main(String[] args) {char c = (char) -1;c >>= 3;short s = (short) -1;s >>= 3;System.out.println(c == s);}}?
请问以上程序的输出是:
发布时间: 2012-12-27 10:17:09 作者: rapoo
第五十八道Java小问题
public class Test {public static void main(String[] args) {char c = (char) -1;c >>= 3;short s = (short) -1;s >>= 3;System.out.println(c == s);}}?
请问以上程序的输出是: