方法:构造方法私有化(private)
public class TestClass {
private static TestClass obj = new TestClass ();
//私有构造方法
private TestClass () {
}
public static TestClass getInstance() {
return obj ;
}
}
使用:
TestClass obj = TestClass.getInstance();
时间: 2024-10-12 12:33:41