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
- port
- profile
- Windows 10
- GIT
- import
- Quartz
- resource
- web.xml
- Mac
- ssh
- maVen
- Windows
- tomcat
- 단축키
- vscode
- plugin
- lsof
- 네트워크
- grep
- VirtualBox
- netsh
- context
- bash
- JavaScript
- 줄바꿈 문자
- IntelliJ
- xargs
- Eclipse
- find
- Source
Archives
- Today
- Total
develog
[java] 배열내 중복 체크 본문
private void findDuplicateValue(String[] list) {
for (int i = 0; i < list.length; i++) {
String str1 = list[i];
for (int j = 0; j < list.length; j++) {
if (i == j) continue;
String str2 = list[j];
if (str1.equals(str2)) {
// System.out.println("중복 => " + i + ". " + str1);
break;
}
}
}
}
'Dev > Java' 카테고리의 다른 글
Async (0) | 2013.07.09 |
---|---|
callback (0) | 2013.07.09 |
generate file name (0) | 2013.07.02 |
String 비교 (0) | 2013.07.02 |
Object.toString(), System.identityHashCode() (0) | 2013.07.02 |
Comments