while (n-- > 0) 的用法 while (n-- > 0) 即是: for (int i = 0; i < n; ++i) {...} 的简写; 还可以写和成while (--n >= 0) {...}。