<Git>
git add ./dir/ -p : add 되는 내용들 따로 따로 확인 가능
<JAVA>
ArrayList 정렬 : https://hianna.tistory.com/569
Collections.sort()
ArrayList 중접 : https://velog.io/@san/2%EC%B0%A8%EC%9B%90-%EB%B0%B0%EC%97%B4%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A2%85%EB%A5%98
List<List<Integer>> arr = new ArrayList<>();
char c1, c2;
String s = Character.toString(c1) + Character.toString(c2)
String 문자 가져오기 : https://www.delftstack.com/ko/howto/java/java-string-indexing/
String s = "hello";
char c = s.charAt(1);
List 중복 제거 : https://hianna.tistory.com/582
//Set(중복 원소 허용 x) -> List
Set<String> set = new HashSet<String>(list);
List<String> list =new ArrayList<String>(set);
문자열 포함 여부 확인 : https://mine-it-record.tistory.com/137
String s1 = "hello";
String s2 = "hell";
boolean isContain = s1.contains(s2); //true
Character 메소드 : https://knowhoon.tistory.com/31
ArrayList.indexOf() : https://codechacha.com/ko/java-collections-arraylist-indexof/
인덱스 리턴, 없으면 -1
'프로그래밍 > 자바' 카테고리의 다른 글
[JAVA] 멀티스레드로 채팅 구현하기 (1) | 2023.07.08 |
---|---|
22-11-06 배운 내용 (0) | 2022.11.07 |
[JAVA] 자바 오버로딩 (Overloading), 가변인자 (varargs) (0) | 2022.09.28 |
[JAVA] 자바 클래스, 인스턴스 (0) | 2022.09.27 |
[JAVA] 자바 변수, static (0) | 2022.09.14 |