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
- 오라클 비교연산자
- react
- 객체협력
- SUB Query
- spring annotation
- 리스트 모달창
- 다운캐스팅
- AOP란?
- 스프링 모달창
- Servlet 맵핑
- IP
- static메서드
- order by
- GROUP BY
- 모달창 여러개
- 상속
- Java
- 깃 명령어
- downcasting
- oracle 연동
- 템플릿
- 싱클톤패턴
- 이클립스 오라클 연동
- 추상 메서드
- singleton
- 사용자 데이터그램 프로토콜
- static
- static 예제
- 형변환
- 다중 모달창
Archives
- Today
- Total
목록싱클톤패턴 (1)
모든지 기록하자!

위에 사진과 같은 클래스 구조에서 싱글톤 패턴을 사용해서 프로그램을 구현해보자 public class HumanDto { private int number; // 선수가 공통적으로 가지고 있는 멤버변수 선언 private String name; // 선수번호, 이름, 나이, 신장 private int age; private double height; public HumanDto() { } public HumanDto(int number, String name, int age, double height) { this.number = number; this.name = name; this.age = age; this.height = height; } public int getNumber() { return ..
Java
2021. 5. 24. 21:43