Java Singleton mode

Source: Internet
Author: User

The Java singleton pattern implements the attribute of only one instance of a class.

Implementation mode: A hungry man type is very simple not elaborated. Below is a description of the lazy type.

  1. Constructor privatization
  2. The static method obtains the instance, the method inside double-check-locking checks. Synchronization methods are not recommended.
public class Singleton {    private static Singleton Singleton;    Private Singleton () {} public    static Singleton getinstance () {        if (Singleton = = null) {//            try {//                Thread.Sleep (+),//            } catch (Interruptedexception e) {//                e.printstacktrace ();/            }            synchronized (singleton.class) {                if (Singleton = = null) {                    Singleton = new Singleton ();}}        }        return singleton;}    }

The code above is intended to make the single-mode failure more likely when there are no synchronized blocks and two checks. The test code will not be written.

Java Singleton mode

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.