函数
int f(unsigned int n) {
unsigned int m = 0;
for (m = 0; n; ++m) {
n &= (n - 1);
}
return m;
} f(2486)的返回值是()

