Common design patterns [Singleton mode]

Source: Internet
Author: User

A similar problem occurs: the generation of production numbers, the ticketing system, and other data need to be synchronized. Think of the singleton mode immediately ....

ExampleCode:

 
Package Singleton;/*** @ description: singleton mode * @ author Potter * @ date 10:08:16 * @ version V1.0 */public class app {public static void main (string [] ARGs) {numdevice G = numdevice. getinstance (); // greedy2 G = greedy2.instance; system. out. println (G. next (); show ();} public static void show () {numdevice G = numdevice. getinstance (); // numdevice2 G = numdevice2.instance; system. out. println (G. next ());}}

Method 1: implement with classes:

 
Package Singleton;/*** @ description: singleton class * @ author Potter * @ date 10:01:45 * @ version V1.0 */public class numdevice {private final static numdevice me = new numdevice (); Private numdevice () {} public static numdevice getinstance () {return me;} private int count; Public int next () {return count ++ ;}}

Method 2: Use enumeration classes

 
Package Singleton;/*** @ Description: Singleton class * @ author Potter * @ date 10:01:45 * @ version V1.0 */Public Enum numdevice2 {instance; private int count; public int next () {return count ++ ;}}

 

 

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.