jjryu 2016. 5. 1. 17:19

java.lang.Double

.compare() // static


java.lang.System

.exit() // static

.out // static; java.io.PrintStream

.print()

.println()

.printf() // 자바 5.0

.err // static

.println()

.in // static; InputStream

.read()


에러가 없이 정상적으로 종료되었을 때는

System.exit(0);

이렇게 0을 운영체제에 돌려주고, 에러가 있을 때에는 0이 아닌 값을,

System.exit(1);

이렇게 보통 1을 돌려줍니다.