일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- border-box
- git flow
- 토큰경제
- mac terminal command
- #bubbleSort
- 하이퍼레저패브릭
- docker example
- html id
- #android activity
- #3차원배열
- #2차원배열
- #C++ 연산자함수오버로딩
- #성적관리프로그램
- relative path
- html code
- #자바상속#자바이즈어#is~a
- #JAVASCRIPT
- html charset
- html object
- html youtube
- #다차원포인터
- #CallByAddress
- #C++ has~a
- hyperledger transaction
- html video
- #binary
- html multimedia
- html plug-in
- #1차원배열
- html5 new tag
Archives
- Today
- Total
A sentimental robot
Interface 본문
Interface
- 상수와 추상메소드로만 이루어져 있다.
- 다중 상속이 가능하다.
public interface Aa extends B { // 인터페이스끼리도 extends로 상속 가능, but 다중상속가능
final static int A = 10; // 상수니까 변수이름이 대문자이다. final은 생략가능, 상수는 선언과 동시에 초기화한다.
abstract void disp(); // 추상메소드 abstract 생략가능
}
public interface B {
abstract void disp2();
}
public class CC implements Aa, B { // 인터페이스를 상속받을 때는 implements 를 쓴다. 인터페이스는 다중상속이 가능하다.
@Override
public void disp2() {
}
public void disp() {
System.out.println("disp()"+A);
}
public static void main(String[] args) {
Aa a = new CC(); // 인터페이스는 객체를 만들지 못함
a.disp();
a.disp2(); // Aa가 B를 상속받았기 때문에 disp2 사용가능
}
}
'Java' 카테고리의 다른 글
Thread (0) | 2017.12.29 |
---|---|
Inner class (0) | 2017.12.29 |
추상클래스를 이용한 스택,큐! (0) | 2017.12.29 |
Abstract class,추상클래스에 대해서 (0) | 2017.12.29 |
Overridding, 재정의 (0) | 2017.12.29 |