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
- order by
- 싱클톤패턴
- Servlet 맵핑
- 스프링 모달창
- 모달창 여러개
- Java
- GROUP BY
- downcasting
- 오라클 비교연산자
- static메서드
- 객체협력
- 상속
- oracle 연동
- react
- 사용자 데이터그램 프로토콜
- 다운캐스팅
- SUB Query
- singleton
- IP
- spring annotation
- 템플릿
- static 예제
- 다중 모달창
- AOP란?
- 이클립스 오라클 연동
- 형변환
- 깃 명령어
- 추상 메서드
- 리스트 모달창
- static
Archives
- Today
- Total
목록super (1)
모든지 기록하자!
[Java] 상속 - 형 변환, super, 생성자 (예제: 고객관리)
하위 클래스가 생성되는 과정 VIPCustomer customerChoi = new VIPCustomer(); customerChoi.setCustomerID(10101); customerChoi.setCustomerName("최민식"); customerChoi.bonusPoint = 1000; System.out.println(customerChoi.showCustomerInfo()); VIPCustomer 클래스로 선언한 customerChoi 인스턴스는 상위 클래스의 변수를 사용할 수 있다. 이는 그 변수를 저장하고 있는 메모리가 존재한다는 뜻이다. 테스트를 하기 위해 Customer와 VIPCustomer 클래스 생성자에 출력문을 추가해보자. public class Customer { protec..
Java
2021. 5. 15. 00:42