일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- git flow
- #1차원배열
- html youtube
- #C++ has~a
- #다차원포인터
- html object
- hyperledger transaction
- html charset
- html code
- 하이퍼레저패브릭
- #C++ 연산자함수오버로딩
- #3차원배열
- html plug-in
- #binary
- #성적관리프로그램
- #CallByAddress
- relative path
- docker example
- html video
- #android activity
- #JAVASCRIPT
- 토큰경제
- #bubbleSort
- mac terminal command
- html multimedia
- html5 new tag
- html id
- border-box
- #자바상속#자바이즈어#is~a
- #2차원배열
Archives
- Today
- Total
목록#중첩인터페이스 (1)
A sentimental robot
중첩 인터페이스
public class Day2 implements Inter1.Inter2{ public static void main(String[] args) { } @Override public void f2() { // TODO Auto-generated method stub } } public interface Inter1 { void f1(); interface Inter2 { void f2(); } interface Inter3{ void f3(); } } 인터페이스 안에 클래스를 상속받기 public class Day2 extends Inter1.Banana{ public static void main(String[] args) { Banana b=new Banana(); b.f1(); } } publi..
Java
2018. 1. 4. 13:43