标签:nbsp color on() span ret turn text 实现 center
创建一个类
1 public class Singleton { 2 private static Singleton INSTANCE = new Singleton(); 3 4 private Singleton (){} 5 6 public static Singleton getInstance() { 7 return INSTANCE; 8 } 9 }
标签:nbsp color on() span ret turn text 实现 center
原文地址:https://www.cnblogs.com/yeyangshu/p/12866374.html