Questions tagged [atomicinteger]

Java's AtomicInteger class

https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/concurrent/atomic/AtomicInteger.html

java.util.concurrent.atomic.AtomicInteger was new in Java 1.5

121 questions
-4
votes
1 answer

Can AtomicInteger be used in a non-concurrent web application instead of integer?

Would it make sense to use AtomicInteger in some arbitrary Java code instead of Integer? Even in a single-threaded context, where thread safety is not an issue? Would that help with performance in any way?
1 2 3
8
9