====== Java中常见的SuppressWarnings列表 ====== * Synchronized的对象为局部变量: @SuppressWarnings("SynchronizationOnLocalVariableOrMethodParameter") ---- * 方法或函数没有被使用: @SuppressWarnings("unused") ---- * 循环中使用了Thread.sleep() @SuppressWarnings("BusyWait") ---- * 无限循环: @SuppressWarnings("InfiniteLoopStatement") ---- * 强制转换 @SuppressWarnings("unchecked")