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
- lsof
- maVen
- GIT
- web.xml
- context
- IntelliJ
- tomcat
- resource
- JavaScript
- Eclipse
- find
- bash
- Windows 10
- plugin
- xargs
- ssh
- Windows
- 네트워크
- grep
- port
- 줄바꿈 문자
- vscode
- Mac
- Quartz
- netsh
- VirtualBox
- import
- 단축키
- profile
- Source
Archives
- Today
- Total
develog
[Java] template callback return value 본문
TestMain2
public class TestMain2 {
public static void main(String[] args) {
TestMain2 main = new TestMain2();
Object ret = main.template(new TestJob() { public Object doJob(int num1, int num2) { return num1 + num2; } }, 11, 22);
System.out.println("ret : " + ret);
}
private Object template(TestJob job, int num1, int num2) { Object ret = null; try { ret = job.doJob(num1, num2); } catch (Exception e) { System.out.println("catch, " + e.getMessage()); } finally {
} return ret; }
} |
TestJob
interface TestJob { public Object doJob(int num1, int num2); } |
'Dev > Java' 카테고리의 다른 글
[Java] @Transactional, tx:advice MIX (0) | 2014.10.07 |
---|---|
[Java] Generics (0) | 2014.10.06 |
[Java] 톰캣 설치 폴더 찾기 (0) | 2014.09.24 |
[Java] Java IO (0) | 2014.09.22 |
[Java] removeTag (0) | 2014.09.18 |
Comments