본문 바로가기

프로그래밍/자바

22-10-30 배운내용

<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 to stringhttps://kutar37.tistory.com/entry/%EC%9E%90%EB%B0%94-String%EC%9D%84-Char%EB%A1%9C-Char%EB%A5%BC-String%EC%9C%BC%EB%A1%9C-%EB%B3%80%ED%99%98%ED%95%98%EA%B8%B0

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

Recent Posts
Popular Posts