[KOTLIN] try catch finally
class Main { fun readNumber(reader: BufferedReader): Int? { return try { val line = reader.readLine() Integer.parseInt(line) } catch (e: NumberFormatException) { null } finally { reader.close() } } }자바와 달리 함수가 던질 수 있는 예외 명시하지 않아도 된다.체크 예외언체크 예외를 구분하지 않는다.발생한 예외를 잡아내거나 잡아내지 않아도 됨NumberFormatException 은 언체크 예외코틀린은 잡아내도록 강제 XBufferedReader 의 경우IOException 을 던질 수 있는데, 체크 예외자바에서는 반드시 처리해야한다.코틀린에서는?명시..