반응형
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 | 31 |
Tags
- Daemon()
- include액션태그
- ThreadGroup()
- interrupt()
- include지시자
- sleep()메소드
- 리눅스셋팅
- Linux세팅
- 리눅스세팅
- char[] String 형변환
- include 지시자
- 상관서브쿼리
- 표현 언어
- ID중복
- isinterrupted()
- 동기화
- StringReader
- ObjectInputStream
- first-child
- 메모리스트림
- first-of-child
- MemoryStream
- 스레드그룸
- InputDialog
- interrupted()
- String char[] 형변환
- 아이디중복
- StringWriter
- 상관 서브 쿼리
- Linux셋팅
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