모든 설명은 주석으로 확인할 수 있어요.
하나씩 따라해 보세요. ^^
package javaEx;
import java.util.Calendar; //main() 에서 클래스로 객체를 생성하면 자동 입력됨
import java.util.GregorianCalendar;
public class Review {
public static void main(String[] args) {
/*
날짜 관련 클래스
- Date
- Calendar
- GregorianCalendar
*/
GregorianCalendar now = new GregorianCalendar(); //캘린더 클래스 사용할 객체 생성
//출력해서 확인
System.out.println(now.get(Calendar.YEAR)); //현재 연도
System.out.println(now.get(Calendar.MONTH)); //현재 월, 0부터 시작한다는 점 주의
System.out.println(now.get(Calendar.MONTH) +1);
System.out.println(now.get(Calendar.DATE)); //현재 일
//리턴값으로만 받아오기
now.get(Calendar.HOUR);
now.get(Calendar.MINUTE);
now.get(Calendar.SECOND);
now.get(Calendar.DAY_OF_WEEK); //요일을 인덱스로 받아옴
}//main() end
}//class end
꾸르잼
댓글