- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习一些设计模式并发现了神奇的单例模式!
似乎有两种实现单例模式的主要方法 - 一种是线程安全的(使用 synchronized
关键字),另一种不是线程安全的。
我的问题是,什么时候不希望让他们的单例线程安全?即使最初的程序设计没有实现线程,也不知道 future 的迭代是否会有这种需求。使单例线程安全时会有性能损失吗?或者我遗漏的其他一些原因对线程安全的单例不利?
示例线程安全单例:
/**
* Thread Safe Singleton Pattern
*
*/
public class Database {
private volatile static H2 uniqueInstance;
public static H2 getInstance() {
if (Database.uniqueInstance == null) {
synchronized (Database.class) {
if (Database.uniqueInstance == null) {
/**
* Instantiate First and Only instance of H2
*/
Database.uniqueInstance = new H2();
}
}
}
return Database.uniqueInstance;
}
private Database() {};
}
示例非线程安全单例:
/**
* Non Thread Safe Singleton Pattern
*
*/
public class Database {
private volatile static H2 uniqueInstance;
public static H2 getInstance() {
if (Database.uniqueInstance == null) {
/**
* Instantiate First and Only instance of H2
*/
Database.uniqueInstance = new H2();
}
}
return Database.uniqueInstance;
}
private Database() {};
}
最佳答案
如果您正在编写一个您知道只有您会使用并且不涉及线程
的程序,那么您不需要同步。
如果您使用的单例是不可变的或没有可变状态,那么您也不需要使用同步。
所以基本上这取决于您的目的、可变状态(或缺少可变状态)以及您的单例的可能用途。
正如旁注:这是常识,它不仅适用于单例 模式,而且适用于许多情况。
关于java - 何时不使单例线程安全,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17688304/
我最近购买了《C 编程语言》并尝试了 Ex 1-8这是代码 #include #include #include /* * */ int main() { int nl,nt,nb;
早上好!我有一个变量“var”,可能为 0。我检查该变量是否为空,如果不是,我将该变量保存在 php session 中,然后调用另一个页面。在这个新页面中,我检查我创建的 session 是否为空,
我正在努力完成 Learn Python the Hard Way ex.25,但我无法理解某些事情。这是脚本: def break_words(stuff): """this functio
我是一名优秀的程序员,十分优秀!