JAVA 처리시간 계산하기 currentTimeMillis 사용 방법
작성한 소스가 시간이 얼마나 걸리는지 확인하고 싶은 경우가 있습니다.currentTimeMillis를 사용하여 프로그램 실행 시간을 측정할 수 있습니다.처리시간 계산 예제// 소스 실행전 시간 취득long start = System.currentTimeMillis();/*실행시간을 측정하고싶은 코드 작성*/// 소스 실행후 시간 취득long end = System.currentTimeMillis();// 측정 시간 출력System.out.println( "실행 시간 : " + ( end - start )/1000.0 +”초”);측정...