public class Test {
public static void main(String[] args) {
int s = 10;
s >>= 10;
System.out.println(s);
}
}s >>= 10; >>=是什么意思,只见过>>,感谢。