Already included file name ‘c:/Users/Administrator/Desktop/test/src/components/detailList.vue’ differs from file name ‘c:/Users/Administrator/Desktop/test/src/components/detaillist.vue’ only in casing. The file is in the program because: Imported via ‘…
一.何为单例设计模式 如其名字,单例设计模式就是指的是一个类中只允许存在一个对象实例。 在java中,我们存在两种创建单例模式的思路:饿汉式和懒汉式 ①饿汉式:在创建类时直接创建对象实例 public class SingleHungryMan {//建立类…