Design Patterns Simplified - Part 2 (Singleton)【设计模式简述--第二部分(单例模式)】

     

I am here to continue the explanation of Design Patterns. Today we will explain the easiest yet an important design pattern called Singleton.

这里我继续来解释设计模式。今天我将会来解释,最简单但非常重要的设计模式,也就是单例模式。

In case you have not had a look at our first article, go through the following link:

这里假设,你还没有看我的第一篇文章,请先回去阅读吧,下面是链接:

Before talking about its implementation let’s begin with some fundamental questions as in the following.

来讨论单例模式是如何实现之前,我们先看看下面一些基础的问题吧。

Use of the Singleton Pattern【使用单例模式】

As the name suggests, the Singleton Pattern allows only one instance of a class to be created.

就像这个名字一样,单例模式只允许,创建一个类的实例。

When do we need to have only one instance of a class? 

为什么我们只需要一个类的实例?

There are many possible requiremetns for a instance of a class but they all tend to have the one objective that we don’t want to change the state of the object or we want to keep the class stateless.

这里有许多可能的requiremetns类的实例,但是它们都想要只有一个对象,所以我们不能去改变对象的状态或者使对象的状态变成无效的。

A simple example could be that you want to load some master data at once and let the consumers of the data make a call to the Singleton class instead of each consumer making various calls by creating a new instance.

举一个简单的例子,你想要立刻加载主表的数据,并且让一个单例类来调用获取客户表的数据,而不是对于每一个客户,都来创建一个类的实例来调用获取数据。

In general, in any complex enterprise application, Repository and Data Access Layer classes can be seen as a Singleton since typically we don’t want them to maintain the state in these layers.

一般来说,在任何复杂点的企业级应用程序中,仓储和数据访问层的类,可以作为单例来看待,因为我们不想要它们在这些层中,保持状态。

Some other example could be cross-cutting concerns like Logging, Configuration, Caching and so forth that can also be implemented as a Singleton since we want a single and global point of access to these classes.
其他的例子就是横切关注点了,例如日志,系统配置,缓存等等,可以同样设计为单例,因为我们想要对这些类,进行全局的,单一的访问。

Apart from the core consideration explained above, I have seen that developers, mostly not so experienced sometimes, create unnecessarily instances that creates not just an overhead to memory but also impacts the overall performance of an application.

除了上面解释的,我看到过很多的开发者,有时候并不是那么有经验,他们创建不必要的实例,这不仅仅增加了内存的开销,同样也影响了系统的性能。

Why not Static classes【为什么不使用静态类】

There can be several reasons why to not use a static class however I can think of a few as follows.

至于为什么不使用静态类,我认为有如下的原因:

  • There can be cases where you want to implement interfaces (maybe to implement IOC, I will explain IOC later) in a class that can be done in a Singleton implementation but not in the static one.

     可能存在这样的情况:你想要在类中实现某个接口【可能是实现IOC,我后面会降到IOC】,这种情况可以在单例中做到,但是不能在静态类实现。
  • If required, you can use a singleton class as a method parameter whereas you cannot do that with a static class.
         如果有需要,你可以把单例类作为一个方法的参数,但是,你不能对静态类也这样做。

Special care for Singleton classes【特别要说的就是单例类】

We need to take special care for Singleton classes. The idea of a state of a class comes with some extra care that means we need to handle synchronization issues in multi-threaded environments.

我们需要特别说到单例类,类的状态,有一些需要注意点,也就是我们需要在多线程的环境中处理同步的问题。

Enough theory, now let’s talk about implementation.

好了,理论已经足够了,现在我们来讨论怎么实现单例模式吧。

Let’s have a look at the most basic implementation.

我们先看看最基本的实现。

In the first example below, we have implemented a Singleton with Lazy loading since the instance will not be created until the caller calls the GetInstance method for the first time.

在下面的例子中,我实现了一个懒加载的单例,因为这个实例只有在GetInstance方法第一次被调用的时候,才会创建类的实例。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ConsoleApplication1
{
/// <summary>
/// SingletonClass单例模式学习
/// </summary>
public class SingletonClass
{
/// <summary>
/// 创建私有的,静态的,类的变量
/// </summary>
private static SingletonClass instance = null; /// <summary>
/// 创建私有的SingletonClass无参构造函数
/// </summary>
private SingletonClass()
{ } /// <summary>
/// 创建静态的属性GetInstance
/// </summary>
public static SingletonClass GetInstance
{
get
{
if (instance == null)
{
//实例化SingletonClass
instance = new SingletonClass();
}
return instance;
}
}
}
}

Let’s try to fix the sync issue that may arise in multi-threaded environments. For this, we will use a double-lock mechanism.

现在我们来修复,上面例子中在多线程环境中,可能出现的同步问题吧。对于这个,我将会使用一个双锁机制。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks; namespace ConsoleApplication1
{
/// <summary>
/// SingletonClass单例模式学习
/// </summary>
public class SingletonClass
{
/// <summary>
/// 创建私有的,静态的,类的变量
/// </summary>
private static SingletonClass instance = null; private static object lockMe = new object();
/// <summary>
/// 创建私有的SingletonClass无参构造函数
/// </summary>
private SingletonClass()
{ } /// <summary>
/// 创建静态的属性GetInstance
/// </summary>
public static SingletonClass GetInstance
{
get
{
if (instance == null)
{
lock (lockMe)
{
if (instance == null)
{
//实例化SingletonClass
instance = new SingletonClass();
}
} }
return instance;
}
}
}
}

And in the last, Singleton with static initializations. Please note that the .NET Framework guarantees thread safety for static initialization so we don’t need extra care for sync issues however we may not get the benefit of lazy loading of objects here.

最后,我们看下单例模式静态的初始化。请注意对于静态的初始化,.NET Framework保证了线程安全,我们不必要去关心同步的问题,但是这种情况下,我们不能从懒加载对象中获益。

public class SingletonClass
{
private static SingletonClass instance = new SingletonClass();
private SingletonClass() {}
public static SingletonClass GetInstance
{
get
{
return instance;
}
}
}

I hope you have liked this article. I look forward to your comments/suggestions.

我希望你喜欢,这篇文章,期待你的评论和建议。

Design Patterns Simplified - Part 2 (Singleton)【设计模式简述--第二部分(单例模式)】的更多相关文章

  1. 【翻译】设计模式学习系列1---【Design Patterns Simplified: Part 1【设计模式简述:第一部分】】

    原文链接:http://www.c-sharpcorner.com/UploadFile/19b1bd/design-patterns-simplified-part1/ Design Pattern ...

  2. Design Patterns Simplified - Part 3 (Simple Factory)【设计模式简述--第三部分(简单工厂)】

    原文链接:http://www.c-sharpcorner.com/UploadFile/19b1bd/design-patterns-simplified-part3-factory/ Design ...

  3. 设计模式(Design Patterns)

    设计模式(Design Patterns) ——可复用面向对象软件的基础 设计模式(Design pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结.使用设计模式是为了 ...

  4. 设计模式(Design Patterns)Java版

    设计模式(Design Patterns) ——可复用面向对象软件的基础 设计模式(Design pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结.使用设计模式是为了 ...

  5. Java设计模式(Design Patterns)——可复用面向对象软件的基础

    设计模式(Design Patterns) 设计模式(Design pattern)是一套被反复使用.多数人知晓的.经过分类编目的.代码设计经验的总结. 使用设计模式是为了可重用代码.让代码更容易被他 ...

  6. 图书-软件架构:《Design Patterns: Elements of Reusable Object-Oriented Software》(即后述《设计模式》一书)

    ylbtech-图书-软件架构:<Design Patterns: Elements of Reusable Object-Oriented Software>(即后述<设计模式&g ...

  7. Learning JavaScript Design Patterns The Singleton Pattern

    The Singleton Pattern The Singleton pattern is thus known because it restricts instantiation of a cl ...

  8. Design Patterns in Smalltalk MVC 在Smalltalk的MVC设计模式

    Design Patterns in Smalltalk    MVC在Smalltalk的MVC设计模式 The Model/View/Controller (MVC) triad ofclasse ...

  9. 云设计模式-Design patterns for microservices

    云设计模式 https://azure.microsoft.com/zh-cn/blog/design-patterns-for-microservices/ https://www.cnblogs. ...

随机推荐

  1. PHP文件相关的操作函数——目录操作

    1.有关文件类型的函数 PHP是以UNIX的文件系统为模型的,因此在Windows系统中我们只能获得“file”.“dir”或者“unknown”三种文件类型.而在UNIX系统中,我们可以获得“blo ...

  2. TaintDroid剖析之IPC级污点传播

    TaintDroid剖析之IPC级污点传播 作者:简行.走位@阿里聚安全 前言 在前三篇文章中我们详细分析了TaintDroid对DVM栈帧的修改,以及它是如何在修改之后的栈帧中实现DVM变量级污点跟 ...

  3. Java NIO5:选择器1---理论篇

    选择器 最后,我们探索一下选择器.由于选择器内容比较多,所以本篇先偏理论地讲一下,后一篇讲代码,文章也没有什么概括.总结的,写到哪儿算哪儿了,只求能将选择器写明白,并且将一些相对重要的内容加粗标红. ...

  4. [史上最全]C#(VB.NET)中位运算符工作过程剖析(译)

    原文地址CodeProject 目录 介绍 “二进制-十进制”相互转换 十进制->二进制 二进制->十进制 OR运算符(按位或|) OR运算符工作方式 FlagsAttribute AND ...

  5. Redis系列(二)-Hredis客户端设计及开源

    接上篇c#实现redis客户端(一),重新整理些了下. 阅读目录: 项目说明 Hredis设计图 单元测试场景 总结 项目说明 背景:因为有地方要用,而又没找到对sentinel良好支持的Net客户端 ...

  6. lua中实现异步资源读写

    同样还是更新方面的需求,当我们检测到版本是新安装的以后,要进行upd目录清除.如果使用os.execute执行 rm -rf ooxx 是非常快的但由于os.execute一旦报错,那整个lua进程就 ...

  7. Node.js + Web Socket 打造即时聊天程序嗨聊

    前端一直是一块充满惊喜的土地,不仅是那些富有创造性的页面,还有那些惊赞的效果及不断推出的新技术.像node.js这样的后端开拓者直接将前端人员的能力扩大到了后端.瞬间就有了一统天下的感觉,来往穿梭于前 ...

  8. 一种Flash页游前端3D转2D显示技术——PV2D, 颠覆传统吧!

    stage3D很强大,但是客户端硬件加速支持有限. 出来的图形锯齿严重,看上去和果冻一样. Stage3d不兼容2d模式. 总的来说,3D很美好,现实很残酷.但是3D有无可比拟的优势:那就是节省90% ...

  9. SQL Server 2012 Managed Service Account

    原创地址:http://www.cnblogs.com/jfzhu/p/4007472.html 转载请注明出处 (一)Windows服务使用的登陆帐号 Windows服务只有登录到某一帐户的情况下才 ...

  10. JVM系列-分代收集垃圾回收

    Java自动垃圾回收(Automatic Garbage Collection)是自动回收堆上不再使用的内存,new的对象在程序中没有引用指向它,就会被回收.回收的实现很多,有Reference Co ...