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
- JavaScript
- vscode
- xargs
- Windows 10
- bash
- Windows
- Quartz
- Eclipse
- web.xml
- port
- lsof
- profile
- grep
- plugin
- find
- VirtualBox
- context
- GIT
- Source
- netsh
- 단축키
- maVen
- tomcat
- ssh
- IntelliJ
- import
- Mac
- 네트워크
- 줄바꿈 문자
- resource
Archives
- Today
- Total
develog
variable arguments 본문
private void test(Object... args) {
System.out.println(">> test()");
for (int i = 0; i < args.length; i++) {
System.out.println(" " + i + ". " + args[i]);
}
}
Comments