WINCOL 2010-05-07
1、使用同步方法:
private static Singleton instance; public static Singleton getInstance() { if (instance == null) instance == new Singleton(); return instance; }
2、放弃同步,使用静态变量:
private static Singleton instance = new Singleton();
public static Singleton getInstance(){
return instance;
}
3、比较新颖的写法:
public class Singleton { static class SingletonHolder { static Singleton instance = new Singleton(); } public static Singleton getInstance() { return SingletonHolder.instance; } }
使用 CSS3,网页设计师可以使用他/她喜欢的任何字体。只需简单的将字体文件包含在网站中,它会自动下载给需要的用户。在新的 @font-face 规则中,您必须首先定义字体的名称,然后指向该字体文件。