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