为什么在这里使用Atomic?

问题描述 投票:3回答:1

在阅读SpringRetry的源代码时,我遇到了这段代码:

private static class AnnotationMethodsResolver {

    private Class<? extends Annotation> annotationType;

    public AnnotationMethodsResolver(Class<? extends Annotation> annotationType) {
        this.annotationType = annotationType;
    }

    public boolean hasAnnotatedMethods(Class<?> clazz) {
        final AtomicBoolean found = new AtomicBoolean(false);
        ReflectionUtils.doWithMethods(clazz,
                new MethodCallback() {
                    @Override
                    public void doWith(Method method) throws IllegalArgumentException,
                            IllegalAccessException {
                        if (found.get()) {
                            return;
                        }
                        Annotation annotation = AnnotationUtils.findAnnotation(method,
                                annotationType);
                        if (annotation != null) { found.set(true); }
                    }
        });
        return found.get();
    }

}

我的问题是,为什么在这里使用AtomicBoolean作为局部变量?我检查了RelfectionUtils.doWithMethods()的源代码,但没有找到任何并发调用。

java spring java.util.concurrent
1个回答
1
投票

每次调用hasAnnotatedMethods都会获得自己的found实例,因此调用hasAnnotatedMethods的上下文无关紧要。

ReflectionUtils.doWithMethods有可能从多个线程调用doWith方法,这需要doWith是线程安全的。

我怀疑AtomicBoolean只是被用来从回调中返回一个值,而且boolean[] found = new boolean[1];也会这样做。

© www.soinside.com 2019 - 2024. All rights reserved.