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
- downcasting
- 형변환
- spring annotation
- 사용자 데이터그램 프로토콜
- 추상 메서드
- order by
- AOP란?
- singleton
- 다중 모달창
- 스프링 모달창
- SUB Query
- 이클립스 오라클 연동
- 리스트 모달창
- IP
- 깃 명령어
- oracle 연동
- 상속
- static
- Java
- Servlet 맵핑
- 오라클 비교연산자
- static 예제
- static메서드
- 싱클톤패턴
- GROUP BY
- 템플릿
- 다운캐스팅
- 모달창 여러개
Archives
- Today
- Total
목록싱클톤패턴 (1)
모든지 기록하자!
[Java] 싱글톤을 이용한 야구선수 관리 프로그램
위에 사진과 같은 클래스 구조에서 싱글톤 패턴을 사용해서 프로그램을 구현해보자 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