此代码是线程安全的还是使用参数来同步风险?

时间:2016-07-19 15:22:22

标签: java concurrency

private void doSomething(final Queue<Integer> stuff) {
        synchronized(stuff){
                Integer stuffId = stuff.poll();
        }
        etc

它特别让我担心它被注释了 @SuppressWarnings( “SynchronizationOnLocalVariableOrMethodParameter”)

0 个答案:

没有答案