Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- git
- Real MySQL
- java
- 스터디
- 회고
- 책리뷰
- hackerrank
- jsp
- 2020년 일정
- 미니프로젝트
- Python
- Til
- 서평
- sqldeveloper
- If
- 코드숨
- 항해99
- LeetCode
- 성적프로그램
- 필기
- 뇌정리
- algorithms
- 2020년 제4회 정보처리기사 필기 문제 분석
- 정보처리기사
- 주간회고
- 알고리즘
- 함수형 코딩
- Jackson
- post
- 2020년 정보처리기사 4회
Archives
- Today
- Total
목록extends Object (1)
조컴퓨터

지난 시간 이어서 과제 진행 Calendar 날짜에 관련된 클래스이다. 일 표시를 Date로 사용한다. GregorianCalendar를 활용할 수 있다. GregorianCalendar now=new GregorianCalendar(); System.out.println(now.get(Calendar.YEAR));//2020 System.out.println(now.get(Calendar.MONTH));//7 System.out.println(now.get(Calendar.MONTH)+1);//8 태어난년도%12 //->0원숭이 1닭 2개 ~~~~ 11양 //생년월일 int myYear = Integer.parseInt(jumin.substring(0, 2)); int myMonth = Integer...
자바 웹개발자 과정/JAVA
2020. 8. 27. 09:53