일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오버라이딩
- 인터페이스
- 스프링컨테이너
- 스프링
- 테스트코드
- 서블릿
- HttpServletResponse
- 참조변수
- 의존관계
- html form
- equals()
- 티스토리챌린지
- 싱글톤
- ocp
- 프록시
- 코드트리조별과제
- 김영한
- DI
- @configuration
- objecterror
- fielderror
- http 메시지 컨버터
- 코드트리
- 코딩테스트
- 오블완
- java
- JSON
- 다형성
- 추상클래스
- 백준
- Today
- Total
목록참조변수 (2)
minOS
ch7-24 참조변수의 형변환 - 사용할 수 있는 멤버의 개수를 조절하는 것 - 조상 자손 관계의 참조변수는 서로 형변환 가능 class Car{ String color; int door; void drive(){ System.out.println("drive,brrr~"); } void stop(){ System.out.println("stop!!"); } } class FireEngine extends Car{ void water(){ System.out.println("water!!"); } } public class Main { public static void main(String[] args) { FireEngine f = new FireEngine(); Car c = (Car) f; //자손..
ch7-10 참조변수 super - 객체 자신을 가리키는 참조변수, 인스턴스 메서드(생성자) 내에서만 존재 (static 메서드 내에 사용불가능) - 조상의 멤버를 자신의 멤버와 구별할 때 사용 class Parent { int x = 10; //super.x } class Child extends Parent{ int x =20; //this.x void method(){ System.out.println("x:"+x); System.out.println("this.x:"+this.x); System.out.println("super.x:"+super.x); } } public class Main { public static void main(String[] args) { Child child = ne..