일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 단축키
- 형변환
- 다형성
- 상속예제
- 추상클래스
- 자바
- 이클립스
- 로또
- Full text
- angular2
- 전자정부
- 상속
- jquery
- 업캐스팅
- 스프링
- full text indexing
- 다운캐스팅
- 자바 야구게임
- IBatis procedure
- 가변인자
- 25가지 효율적인 sql작성법
- Validations
- Login with OAuth Authentication
- 전체
- 전체텍스트
- Random
- 야구게임
- while
- 페이징
- Today
- Total
목록JAVA/15. Inheritance(상속) (4)
nalaolla
상속예제입니다.
package test.com; public class Test03Main { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("추상클래스 : abstract class..."); Test03DDD td = new Test03EEE(); } } package test.com; public abstract class Test03DDD { //메소드는 일반메소드(인스턴스, 스테틱), 추상메소드 //일반메소드는 {}을 갖는다. //추상메소드는 {}없이 ;으로 끝... //구분하기 위해서 abstract표기(메소드와 클래스에 모두 표기) //메소드의 재정의를 강제하기 위해 사용 public ..
package test.com; public class Test02AAA { int a = 111; String a2 = "AAA"; public Test02AAA() { System.out.println("Test02AAA()..."); } public void aaa() { System.out.println("aaa()..."); }} package test.com; public /*final*/ class Test02BBB extends Test02AAA { int b = 222; String b2 = "bbb"; public Test02BBB() { System.out.println("Test02BBB()..."); this.a = 777; } public void bbb() { System.ou..
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..