Java design pattern-Singleton mode

Source: Internet
Author: User

Previously all only knew the code, sometimes encountered such a problem, in a class want to invoke another class inside the method, or member variables, each time to new, or to set the class member to static, but it is inconvenient, and sometimes that class every time new, The inside constructor adds new data, and so on. In the absence of this singleton pattern, I used a static member to save an instance of that class, and each time new was judged whether it was new or not, but it was not suitable for expansion. Then we found the singleton pattern:

This is the first simplest pattern I have touched in several modes. Look at the code:

Public single{public  static single single=null;    public static single getinstance () {if (single==null) single=new single (), return single;}

The above is all, the use of time outside do not judge. Direct:
Single.getinstance (). Xxxx
Can call the inside of the thing, is not very convenient

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.