Is there any performance difference between AtomicInteger and Integer?
Is there any performance difference between AtomicInteger and Integer ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The choice of these two types should not depend on the performance. The main choice for
AtomicIntegeris if you want to achieve thread safety with the operations on the integer.However the performace difference might strongly depend on the choosen operating system, as the detailed implementation of atomic operations depend on the operating system.