본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

정밀한 시간표현, currentTimeMillis()

System.currentTimeMillis()
System.currentTimeMillis()는 현재 시스템 시간을 밀리초 단위로 반환하는 메서드
*1970년 1월 1일 00:00:00 UTC(GMT)부터 
현재까지 경과한 시간을 밀리초 단위로 표시한 값을 반환

long currentTime = System.currentTimeMillis();
System.out.println(currentTime);

// [출력결과]
// -------currentTimeMillis 정밀한시간-------
// 1672121942591

 
위와같이
UTC부터 현재까지 경과한 시간을
유닉스 시간(Unix time)라 부른다.
 
 
* UTC(GMT)
1970년 1월 1일 00:00:00 UTC(GMT)
https://standout.tistory.com/74

NTP와 UTC의 차이

컴퓨터는 어떻게 시간을 표시할까? 에 대해 잠시 생각해보자. 우선 기기마다 시간이 다르면 인간들이 혼란스러울 테니 서로 같은 시간을 동기화하여 보여주고, 각 지역/나라마다 큰 차이가 나지

standout.tistory.com

'JAVA' 카테고리의 다른 글

private에 접근하기  (0) 2023.03.18
요일출력하기, Calendar  (0) 2023.03.18
타입검사하기, instanceof  (0) 2023.03.18
input값 받아 띄우기, getParameter()  (0) 2023.03.18
주소값출력, identityHashCode()  (0) 2023.03.17