본문 바로가기

프로그래밍/JAVA

코드 실행 시간 측정하기 (System.currentTimeMillis())

long start = System.currentTimeMillis(); //시작하는 시점 계산

/*
실행시간을 측정하고싶은 코드
*/
long end = System.currentTimeMillis(); //프로그램이 끝나는 시점 계산

System.out.println( "실행 시간 : " + ( end - start )/1000.0 +"초"); //실행 시간 계산 및 출력

개발할때 특정 부분의 실행 시간을 확인해야하는 상황이 간혹 발생된다.

그럴 때에 아래와 같이 System.currentTimeMillis() 함수를 사용하면 밀리초 단위로 시간을 확인 할 수 있다.

System.currentTimeMillis() 의 반환 변수 형식은 long 입니다.

 

 

 


Reference
https://emmadeveloper.tistory.com/25