java bookmark,Java Bookmark

描述了Java并发编程时,单例模式的延迟初始化问题及解决方案。

单例模式:

public class singleton {

private singleton(){}

private static class instanceHolder{

static singleton instance = new singleton();

}

public static singleton getInstance(){

return instanceHolder.instance;

}

}

延迟初始化静态变量:

public class singleton {

private static attribute instance;

private static class instanceHolder{

static attribute instance = new attribute();

}

public static attribute getInstance(){

return instanceHolder.instance;

}

}

class attribute{}

多种java设计模式

深入潜出地介绍了Java序列化机制及其使用

介绍了如何使用Apache开源项目Common Pool构建自己的对象池


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部