摘要: public class Test04{ public static void main(String[] args){ //位移运算符 >> //箭头向右,是右移运算符,箭头后面是几,则减少几位 int i = 8; System.out.println(i >> 2); // << 左移运算符, 阅读全文
posted @ 2019-04-19 22:34 SeanGuo 阅读(257) 评论(0) 推荐(0) 编辑