<<= 什么意思?|=什么意思?
x <<= 2; // x = x << 2;
y |= 8; // y = y | 8;
这些都是被缩写了!位运算……
原文:http://www.cnblogs.com/lovebing/p/7458052.html