[프로그래밍언어][Java(자바)] (Class) System - 실행 시간 계산, 나가기 등

728x90

 

Class System

 

Modifier and Type Method Description
static long currentTimeMillis() 현재 시간을 밀리초 단위로 리턴
static void exit(int status) 현재 실행중인 JVM 종료
( status ☞ 0이 아니면 비정상적인 종료를 의미 )

 

Modifier and Type Fields Description
static PrintStream out 표준 출력 스트림 반환
static InputStream in 표준 입력 스트림 반환
static PrintStream err 표준 오류 출력 스트림 반환

 

( https://docs.oracle.com/javase/8/docs/api/java/lang/System.html )

 

 

▶  실행 시간 계산

public class Test {

	public static void main(String[] args) {
		long start = System.currentTimeMillis();
		/* 실행 코드 */
		long finish = System.currentTimeMillis();
		System.out.println( finish - start );
	}
}

 

▶  함수 강제 종료

https://hyunjiishailey.tistory.com/176

 

[백준(Baekjoon)][자바(java)] 2580 : 스도쿠 / 백트래킹

www.acmicpc.net/problem/2580 2580번: 스도쿠 스도쿠는 18세기 스위스 수학자가 만든 '라틴 사각형'이랑 퍼즐에서 유래한 것으로 현재 많은 인기를 누리고 있다. 이 게임은 아래 그림과 같이 가로, 세로 각

hyunjiishailey.tistory.com

 

 

반응형