일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자바
- jquery
- Full text
- 자바 야구게임
- 전자정부
- full text indexing
- 단축키
- 가변인자
- Validations
- 상속
- 스프링
- 야구게임
- while
- Random
- 형변환
- 업캐스팅
- 상속예제
- 추상클래스
- Login with OAuth Authentication
- angular2
- 전체
- 전체텍스트
- 이클립스
- IBatis procedure
- 다형성
- 다운캐스팅
- 페이징
- 로또
- 25가지 효율적인 sql작성법
Archives
- Today
- Total
목록JAVA/16. Interface (1)
nalaolla
내부클래스
package test.com; public class Test01Main { public static void main(String[] args) { System.out.println("Inheritance..."); Test01AAA ta = new Test01AAA(); ta = new Test01BBB(); ta = new Test01CCC(); ta.aaa(); System.out.println("============================"); Test01BBB tb = new Test01BBB(); tb = new Test01CCC(); System.out.println(tb.bbb()); System.out.println("============================"); T..
JAVA/16. Interface
2016. 6. 29. 15:43