반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- String char[] 형변환
- interrupted()
- ObjectInputStream
- StringWriter
- InputDialog
- StringReader
- 스레드그룸
- 리눅스세팅
- Daemon()
- include지시자
- char[] String 형변환
- Linux세팅
- 표현 언어
- 리눅스셋팅
- sleep()메소드
- include액션태그
- first-of-child
- ID중복
- 상관 서브 쿼리
- 상관서브쿼리
- isinterrupted()
- interrupt()
- MemoryStream
- 동기화
- 아이디중복
- ThreadGroup()
- first-child
- Linux셋팅
- include 지시자
- 메모리스트림
Archives
- Today
- Total
목록싱글톤패턴 (1)
다연이네
[days16] 싱글톤패턴
싱글톤 패턴 1. 단 하나만의 객체를 생성해서 사용하겠다 2. 전체 프로그램 상에서 단 하나만의 객체만 생성하도록 보장하는 패턴 3. new 클래스() 불가 public class Ex07 { public static void main(String[] args) { /*DBComponent com1 = new DBComponent(); //new 쓸때마다 새로운 DB컴포넌트 생성 DBComponent com2 = new DBComponent(); DBComponent com3 = new DBComponent(); DBComponent com4 = new DBComponent(); */ //에러 : The constructor DBComponent() is not visible //DBComponent c..
Java
2020. 10. 17. 22:20