SMALL Java267 API) 날짜 형식을 지정해주는 SimpleDateFormat 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ☞ SimpleDateFormat - 날짜 형식을 지정해주는 Format 클래스 2022-03-28 11:36:00 (현재 날짜, 시각)으로 표현 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd E요일 a HH:mm:ss"); String formatStr = sdf.format(new Date()); System.out.println(formatStr); @콘솔출력값 2022-03-28 월요일 오전 11:37:52 2022-03-31 21:50:00(미래 날짜, 시각)으로 표현 Calendar cal = new GregorianCalen.. 2022. 3. 28. API) 시각 정보를 가져오는 Calendar, Date 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ☞ Calendar 캘린더 객체 생성 방법 1) Calendar.getInstance(); Calendar today = Calendar.getInstance(); 캘린더는 추상 클래스이기 때문에 직접 객체화를 할 수 없습니다. 따라서 객체 생성 없이 가져올 수 있는 static 메소드인 getInstance()를 통해서 날짜 정보를 가져올 수 있습니다. Calendar today = Calendar.getInstance(); System.out.println(today); @콘솔출력값 java.util.GregorianCalendar[time=1648186481728,areFieldsSe.. 2022. 3. 28. API) String에서 기본형으로 변경, 기본형에서 String으로 변경 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ☞ String 참조형을 기본형으로 변경하기 String[] data = {"12", "3.4", "true", "안"}; System.out.println(Byte.parseByte(data[0])); System.out.println(Short.parseShort(data[0])); System.out.println(Integer.parseInt(data[0])); System.out.println(Long.parseLong(data[0])); System.out.println(Float.parseFloat(data[1])); System.out.println(Double.parseDo.. 2022. 3. 25. API) 기본형을 객체화 해주는 클래스 Wrapper 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ☞ Wrapper - 기본형을 객체화해주는 클래스 - 기본형을 감싼 참조형 클래스로, 기본형이 아닌 참조형으로만 처리가 가능한 경우 사용 - 기본형은 할 수 없는 null 표현 가능! Byte b = 1; Short s = 2; Integer i = 3; Long l = 4L; Float f = 5.5f; Double d = 6.6; Boolean bool = true; Character ch = '안'; boxing (기본형 → wrapper) int n = 10; Integer nNum = n; 대입 연산자를 사용할 시, 반드시 양 쪽의 자료형이 동일해야 합니다. 위와 같은 경우는 In.. 2022. 3. 25. API) 문자열 값을 수정해주는 StringBuilder, StringBuffer 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. String의 특징 중 하나인 불변성(immutable)! public void test1() { String s1 = "java"; String s2 = "java"; String s3 = new String("java"); String s4 = new String("java"); System.out.println(s1 == s2);//true System.out.println(s2 == s3);//false System.out.println(s3 == s4);//false System.out.println(s1.equals(s2));//true System.out.println(s2.e.. 2022. 3. 25. API) 문자열을 구분해주는 split, StringTokenizer 안녕하세요, 코린이의 코딩 학습기 채니 입니다. 개인 포스팅용으로 내용에 오류 및 잘못된 정보가 있을 수 있습니다. ☞ split - 전달받은 문자열을 기준으로 문자열을 구분 ① 하나의 구분자만 있을 때 String data = "apple banana cream desert egg"; String[] arr = data.split(" "); for(String a : arr) { System.out.print("[" + a + "]"); } @콘솔출력값 [apple][banana][cream][desert][egg] "apple banana cream desert egg"를 공백(" ")을 기준으로 문자열을 나누어 String[]에 대입해주었습니다. 만약 문자열 내에 공백(" ")만 있는 것이 아니라 .. 2022. 3. 25. 이전 1 ··· 26 27 28 29 30 31 32 ··· 45 다음 LIST