Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4608302
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:49:33+00:00 2026-05-22T00:49:33+00:00

Is it correct implementation of lazy-initializing singleton using AtomicReference? If no – what are

  • 0

Is it correct implementation of lazy-initializing singleton using AtomicReference? If no – what are the possible issues?

import java.io.ObjectStreamException;
import java.io.Serializable;
import java.util.concurrent.atomic.AtomicReference;

public class Singleton implements Serializable {

    private static final Singleton _instance = new Singleton();

    private static AtomicReference<Singleton> instance = new AtomicReference<Singleton>();

    private Singleton() {
    }

    public static Singleton getInstance() {
        if (instance.compareAndSet(null, _instance)) {
            synchronized (_instance) {
                _instance.init();
                instance.set(_instance);
            }
        }
        return instance.get();
    }

    private void init() {
        // do initialization
    }

    private Object readResolve() throws ObjectStreamException {
        return getInstance();
    }

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T00:49:34+00:00Added an answer on May 22, 2026 at 12:49 am

    No, this is bad:

    public static Singleton getInstance() {
        // new "singleton" for every method call
        Singleton s = new Singleton();
                       ^^^^^^^^^^^^^^
        if (instance.compareAndSet(null, s)) {
            synchronized (s) {
                s.init();
            }
        }
        return instance.get();
    }
    

    Using an AtomicReference is a nice idea, but it won’t work because Java doesn’t have lazy evaluation.


    The classic post 1.5 singleton methods are:

    Eager Singleton:

    public final class Singleton{
        private Singleton(){}
        private static final Singleton INSTANCE = new Singleton();
        public Singleton getInstance(){return INSTANCE;}
    }
    

    Lazy Singleton with inner holder class:

    public final class Singleton{
        private Singleton(){}
        private static class Holder{
            private static final Singleton INSTANCE = new Singleton();
        }
        public static Singleton getInstance(){return Holder.INSTANCE;}
    }
    

    Enum Singleton:

    public enum Singleton{
        INSTANCE;
    }
    

    You should probably stick with one of these

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is this singleton implementation correct and thread-safe? class Class { public static readonly Class
The following is the implementation of http://www.spoj.pl/problems/LITE/ using Segment Tree's with lazy propagation. I
Possible Duplicate: Efficient way to implement singleton pattern in Java I was reading this
Is it correct to assume that JQuery is not actually an implementation of ECMA
For a poor man's implementation of near -collation-correct sorting on the client side I
please correct the program. Q. Write a java prg to accept RollNo, Name of
What is the correct way to import a C++ class from a DLL? We're
First Question: Is the following routine a correct implementation of an Indy 9 IdTcpServer.OnExecute
@ Gouki Pls check if this is a correct Implementation as there may be
I'm looking for an easy way to enforce the correct implementation of INotifyPropertyChanged i.e.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.