프로그래밍/Java27 이클립스 자동빌드 되지않을때 [임시방편] Project -> build automatically가 체크되어있어도 소스코드를 수정하면 바로 빌드되지 않을때는 좌측 Project Explorer 에서 F5를 누르면 된다 2021. 10. 18. [Java] 특정문자의 개수 구하는 법 아래 코드들은 char형이기때문에 2개이상의 문자의 개수를 구할수없다. 1. 반복문 사용 public class CharCount { public static void main(String[] args) { String str = "apple"; System.out.println(countChar(str, 'a')); // 1 System.out.println(countChar(str, 'p')); // 2 System.out.println(countChar(str, 'l')); // 1 System.out.println(countChar(str, 'e')); // 1 System.out.println(countChar(str, 'c')); // 0 } public static int countChar(.. 2021. 10. 14. Map 값 수정 mapName은 map의 변수명이며 Key의 값이 Value로 변경된다 mapName.put("Key", "Value"); int val = (int)map.get("Key"); //가져오기 2021. 10. 14. 이클립스 Run/Debug시 원하는창 열리도록 하는법 Windows - Preference - Run/Debug - Perspectives에서 Modes/Perspectives를 수정한다. 2021. 10. 14. 이전 1 2 3 4 5 6 7 다음