黑马程序员技术交流社区
标题:
单例设计之饿汉式
[打印本页]
作者:
嘉嘉
时间:
2015-10-1 09:15
标题:
单例设计之饿汉式
public class Student {
// 把构造方法私有,是为了不让外界随意创建
private Student() {
}
// 类本身要创建一个对象。
// 由于静态只能访问静态,所以这里加静态
//为了不让外界通过类名直接访问s成员变量,就加私有
private static Student s = new Student();
// 提供公共的方式让别人使用
// 为了让外界能够直接通过类名访问该方法,需要对该方法加静态
public static Student getStudent() {
return s;
}
public class StudentTest {
public static void main(String[] args) {
Student s1 = Student.getStudent();
Student s2 = Student.getStudent();
System.out.println(s1 == s2);// true
s1.show();
s2.show();
}
}
public void show() {
System.out.println("hello");
}
}
作者:
michael_wlq
时间:
2015-10-1 12:02
楼主这分得的。。。。。。有好兄弟啊
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2