You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package etc.ali.q1;
|
|
|
|
/**
|
|
* 饿汉式,提前创建,用空间换时间,线程安全
|
|
*/
|
|
public class A {
|
|
private static A instance = new A();
|
|
|
|
private A() {
|
|
|
|
}
|
|
|
|
public static A getInstance() {
|
|
return instance;
|
|
}
|
|
}
|