文章列表
原文链接
http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp
This document provides information on typical command-line options and environment variables that can affect the performance characteristics of the Java HotSpot Virtual Machine. Unless otherwise noted, all information in this docum ...
- 2007-05-23 11:45
- 浏览 2276
- 评论(0)
Probably the first design pattern that every software developer learns is Singleton and lazy loading of Singleton classes.
The usual example, goes something like this:
public class Singleton {
static Singleton instance;
public static synchronized Singleton getInstance() {
if (instance == nul ...
- 2007-02-26 15:06
- 浏览 1079
- 评论(0)