第五十八道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);}}
?
请问以上程序的输出是: