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