@SuppressWarnings("SynchronizationOnLocalVariableOrMethodParameter")
----
* 方法或函数没有被使用:
@SuppressWarnings("unused")
----
* 循环中使用了Thread.sleep()
@SuppressWarnings("BusyWait")
----
* 无限循环:
@SuppressWarnings("InfiniteLoopStatement")
----
* 强制转换
@SuppressWarnings("unchecked")