728x90
List<T>에 포함되어 있는지 확인합니다.
포함 > true
미포함 > false
ex)
ArrayList lTest = new ArrayList();
lTest .add("test");
String sString = "test";
// 포함체크
if (lTest .contains(sString )) {
System.out.println("포함");
return;
}
728x90
'JAVA' 카테고리의 다른 글
[WEBTOB]SSL 인증 패스워드 자동 설정법 (0) | 2022.07.01 |
---|---|
[eclipse] SVN commit 'is out of date' 오류 해결 !! (0) | 2022.07.01 |
SVN ip 변경 (0) | 2020.06.19 |
Quartz 스케줄러 DB 연동 / 관리 (0) | 2020.05.14 |
객체 형 변환 [Object reference type] / 오버라이딩 메소드 (0) | 2019.06.27 |