Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- netsh
- Quartz
- VirtualBox
- import
- Eclipse
- 단축키
- vscode
- plugin
- IntelliJ
- JavaScript
- context
- 네트워크
- find
- bash
- xargs
- maVen
- GIT
- lsof
- Mac
- Windows
- Windows 10
- grep
- port
- web.xml
- profile
- resource
- Source
- tomcat
- 줄바꿈 문자
- ssh
Archives
- Today
- Total
develog
callback 본문
public class TestCallback {
public static void main(String[] args) throws Exception {
TestCallback main = new TestCallback();
main.test(new ICallBack() {
public void callbackMethod() {
System.out.println(">> ICallBack.callbackMethod()");
}
});
}
public void test(ICallBack callback) {
callback.callbackMethod();
}
}
interface ICallBack {
public void callbackMethod();
}
'Dev > Java' 카테고리의 다른 글
dbunit jar download (0) | 2013.07.09 |
---|---|
Async (0) | 2013.07.09 |
[java] 배열내 중복 체크 (0) | 2013.07.02 |
generate file name (0) | 2013.07.02 |
String 비교 (0) | 2013.07.02 |
Comments