Vintage appMaker의 Tech Blog

[kotlin 배우기 github] 13. 예외처리 본문

강좌, 연재/앱으로 배우는 kotlin

[kotlin 배우기 github] 13. 예외처리

VintageappMaker 2020. 11. 19. 07:25
  1. 예외처리인 try/catch문은 자바와 많이 비슷하다.
  2. 예외객체가 java의 객체와 동일하다.
  3. 코틀린에서는 try catch를 반드시 할 필요가 없다.
try{
    } catch(e: 각종Exception){
} finally {
}

 

import java.io.BufferedReader
import java.io.FileReader

/**
 * Created by snake on 17. 5. 23.
 */
fun main(args : Array<String>){
    // java와 흡사하다. 그러나 checked excpetion을 지원안함.
    // 즉, try catch를 강제적으로 할 필요가 없다는 말임.
    // 그것보다는 알아서 방어코드를 만들라는 것이 kotlin 철학임.
    try{
        13 / 0;
    } catch(e: Exception){
        println(e);
    } finally {
        println("마지막 수행.")
    }


    var zerodivided = 13 / 0;
    println(zerodivided)
}

// try catch를 강제하지 않았을 뿐, 방어코드는 필요하다.
fun no_checked_exception(){
    // java 코드 자동컨버팅

//    try {
//        val `in` = BufferedReader(FileReader(args[0]))
//        var s: String?
//
//        s = `in`.readLine()
//        while (s != null) {
//            println(s)
//            s = `in`.readLine()
//        }
//        `in`.close()
//    } catch (e: IOException) {
//        System.err.println(e) // 에러가 있다면 메시지 출력
//        System.exit(1)
//    }
//

    // kotlin은 try .. catch문을 반드시 할필요가 없다. checked exception을 지원안함!!
    // ㅜㅜ
    val `in` = BufferedReader(FileReader("file경로명"))
    var s: String?

    s = `in`.readLine()
    while (s != null) {
        println(s)
        s = `in`.readLine()
    }
    `in`.close()

}

 

 

 

kotlin 배우기 - github 예제 - Google Play 앱

안드로이드 개발 공식언어로 kotlin이 추가되었습니다. 안드로이드 개발자 입장에서는 배워야 하지만, 그것도 시간과 노력이 필요해서 쉽지가 않습니다. 그런 개발자들을 위해 kotlin의 필수사항

play.google.com

 

Comments