Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Multithreading in singleton mode

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

The principle of singleton pattern: ensure that a class has an instance and provide a global access point (memory address is unique)

Implementation method:

1. Full mode:

1: publicclass Singleton {2: 3: privatestatic Singleton s = null; 4: 5: private Singleton () {6: 7:} 8: 9: publicstatic Singleton getInstance () {10: 11: if (s = = null) {12: s = new Singleton (); 13:} 14: return s; 15:} 16:}

2. Hungry man model

1: publicclass Singleton {2: privatestatic Singleton s = new Singleton (); 3: private Sinleton () {} 4: publicstatic Singleton getInstance () {5: return s; 6:} 7:} singleton mode thread safety issues: 1. Implement 1: publicclass Single 2: {3: privatestatic Single single through the synchronized keyword 4: private Single () {5:} 6: publicstaticsynchronized Single getInstance () {7: if (single = = null) {8: single = new Single (); 9:} 10: return single 11:} 12:} in this way, you can force only one thread to call the method to get an instance of the class while the program is running, but it also has the disadvantage that synchronization is needed only when the object is used for the first time. When you get the object again, synchronization is no longer needed, and synchronization becomes redundant. 2. In fact, the hungry mode is an effective means to improve multithreading, so JVM ensures that when any thread accesses a singleton object, the instance must be created first. The code is the same as above 3. Another way to improve multithreading 1: publicclass Singleton {2: 3: privatevolatilestatic Singleton uniqueInstance 4: 5: private Singleton () {} 6: 7: publicstatic Singleton getInstance () {8: if (uniqueInstance = = null) {/ / (1) 9: / / the code here 10: synchronized () {11: / / check again 12: if (uniqueInstance = = null) 13: uniqueInstance = new Singleton () 14:} 15:} 16: return uniqueInstance; 17:} 18:}

At the beginning, if 1, 2, or 3 threads go to (1), suppose 1 enters the synchronization block, and 2, 3 wait. 1 after instantiation, 2 enters the synchronization block, finds that uniqueInstance is no longer empty, and jumps out of the synchronization block. Then 3 enters and jumps out of the synchronous block.

The volatile keyword ensures that when a uniqueInstance variable is initialized to an Singleton instance, multiple threads correctly uniqueInstance the variable. If performance is your priority, then this can help you greatly reduce the time consumption of getInstance ().

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report