일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- while
- angular2
- jquery
- Login with OAuth Authentication
- 이클립스
- 전자정부
- 로또
- 상속예제
- IBatis procedure
- 자바 야구게임
- 자바
- 형변환
- 업캐스팅
- Random
- 추상클래스
- 스프링
- 가변인자
- 다형성
- 단축키
- 전체텍스트
- 상속
- 야구게임
- 페이징
- 전체
- 다운캐스팅
- Full text
- full text indexing
- Validations
- 25가지 효율적인 sql작성법
Archives
- Today
- Total
목록상속 (1)
nalaolla
상속의 정의 및 예제
package test.com; public class Test01Main { public static void main(String[] args) { System.out.println("Inheritance..."); // 상속 : 자바의 상속은 클래스간에는 단일상속을 전제로 한다. // 클래스와 인터페이스간에는 다중상속 지원한다. // 인터페이스 간에는 extends가능 // 기능 : 1. 부모(super)클래스의 모든 자원을 사용한다.(접근제한 설정시 제외 ex:private) // Test01Father father = new Test01Father();// father.test(); Test01Me me = new Test01Me(); System.out.println(me.name); me.t..
JAVA/15. Inheritance(상속)
2016. 6. 29. 15:24