做太多遍了,秒杀。
class Solution { public: int hammingWeight(uint32_t n) { int num = 0; for(;n; n &=(n-1), num++); return num; } };