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 | 29 | 30 |
Tags
- Eclipse
- bash
- context
- ssh
- vscode
- web.xml
- resource
- Mac
- Windows
- Quartz
- import
- profile
- find
- 네트워크
- netsh
- maVen
- Source
- plugin
- grep
- IntelliJ
- VirtualBox
- tomcat
- 단축키
- GIT
- Windows 10
- lsof
- port
- JavaScript
- xargs
- 줄바꿈 문자
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