我是靠谱客的博主 坚强萝莉,最近开发中收集的这篇文章主要介绍ES6 的类中使用单例模式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

核心代码:



export default class ChartUtil {
  static getInstace() {
    if (!ChartUtil.instace) {
      ChartUtil.instace = new ChartUtil();
      console.log('新创建了一个实例');
      return ChartUtil.instace;
    }
    console.log('复用之前的实例');
    return ChartUtil.instace;
  }

  constructor() {
    this.initChartLabel();
  }

  initChartLabel() {
    this.lineChartStartLabel = '<objectiveHistory>';
  }


}

 

创建实例:

this.chartUtils = ChartUtils.getInstace();

 

效果图:

 

最后

以上就是坚强萝莉为你收集整理的ES6 的类中使用单例模式的全部内容,希望文章能够帮你解决ES6 的类中使用单例模式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(93)

评论列表共有 0 条评论

立即
投稿
返回
顶部