일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- html5 new tag
- #android activity
- html youtube
- #CallByAddress
- html charset
- git flow
- html code
- html plug-in
- #C++ 연산자함수오버로딩
- #3차원배열
- #성적관리프로그램
- 하이퍼레저패브릭
- #binary
- #C++ has~a
- html video
- html multimedia
- #1차원배열
- relative path
- 토큰경제
- html object
- mac terminal command
- hyperledger transaction
- #자바상속#자바이즈어#is~a
- docker example
- #2차원배열
- #JAVASCRIPT
- #bubbleSort
- html id
- #다차원포인터
Archives
- Today
- Total
목록#anonymousClass (1)
A sentimental robot
익명클래스, anonymous class
class Test { interface Banana { void f1(); } } public class Day { public static void main(String[] args) { Test.Banana ban=new Test.Banana() { @Override public void f1() { System.out.println("Im anonymous 1, name ban"); } }; new Test.Banana() { @Override public void f1() { System.out.println("Im anonymous but my method f1() is going to be disposed."); } }.f1(); // f1()이 바로 호출되고 버려지는 일회용 익명클래스 ba..
Java
2018. 1. 4. 15:38