美文网首页
单例模式

单例模式

作者: jluemmmm | 来源:发表于2021-02-19 13:27 被阅读0次

单例模式是指在一个类中只能有一个实例,即使多次实例化该类,只返回第一次实例化后的实例对象。单例模式可以减少不必要的内存开销,并且在减少全局的函数和变量冲突也具有中也有意义。

惰性单例模式,只有当触发创建实例对象时,实例对象才会被创建。

class Singleton {
  constructor(attr) {
    this.attr = attr
  }

  static getInstance(attr) {
    if (!this.instance) {
      this.instance = new Singleton(attr)
    }
    return this.instance
  }
}
let a = new Singleton('a')
let b = new Singleton('b')
console.log(a === b)

实现一个alert组件

class 方式创建单例模式,定义一个用于获取实例的getInstance 方法

class Alert {
  constructor(content) {
    this.content = content
    this.init()
  }
  init() {
    this.alert = document.createElement('div')
    this.alert.innerHTML = this.content
    this.alert.style.display = 'none'
    document.body.appendChild(this.alert)
  }
  show() {
    this.alert.style.display = 'block'
  }
  hide() {
    this.alert.style.display = 'none'
  }
  static getInStance(content) {
    if(!this.instance) {
      this.instance = new Alert(content)
    } 
    return this.instance
  }
}

let a = Alert.getInStance('a')
let b =  Alert.getInStance('b')
console.log(a === b)

使用闭包实现

function Init(content) {
  this.alert = document.createElement('div')
  this.alert.innerHTML = content
  this.alert.style.display = 'none'
  document.body.appendChild(this.alert)
}

Init.prototype.show = function() {
  console.log('show')
  this.alert.style.display = 'block'
}

Init.prototype.hide = function() {
  console.log('none')
  this.alert.style.display = 'none'
}

var alertSingle = (function() {
  var instance = null
  
  return function(content) {
    if(!instance) {
      instance = new Init(content)
    }
    return instance
  }
})()

let a = new alertSingle('a')
let b = new alertSingle('b')
console.log(a === b)

从ES6重新认识JavaScript设计模式··

相关文章

  • 【设计模式】单例模式

    单例模式 常用单例模式: 懒汉单例模式: 静态内部类单例模式: Android Application 中使用单例模式:

  • Android设计模式总结

    单例模式:饿汉单例模式://饿汉单例模式 懒汉单例模式: Double CheckLock(DCL)实现单例 Bu...

  • 2018-04-08php实战设计模式

    一、单例模式 单例模式是最经典的设计模式之一,到底什么是单例?单例模式适用场景是什么?单例模式如何设计?php中单...

  • 设计模式之单例模式详解

    设计模式之单例模式详解 单例模式写法大全,也许有你不知道的写法 导航 引言 什么是单例? 单例模式作用 单例模式的...

  • Telegram开源项目之单例模式

    NotificationCenter的单例模式 NotificationCenter的单例模式分析 这种单例模式是...

  • 单例模式Java篇

    单例设计模式- 饿汉式 单例设计模式 - 懒汉式 单例设计模式 - 懒汉式 - 多线程并发 单例设计模式 - 懒汉...

  • IOS单例模式的底层原理

    单例介绍 本文源码下载地址 1.什么是单例 说到单例首先要提到单例模式,因为单例模式是单例存在的目的 单例模式是一...

  • 单例

    iOS单例模式iOS之单例模式初探iOS单例详解

  • 单例模式

    单例模式1 单例模式2

  • java的单例模式

    饿汉单例模式 懒汉单例模式

网友评论

      本文标题:单例模式

      本文链接:https://www.haomeiwen.com/subject/khhnxltx.html