日积月累
12345678
try { // ...} catch { case ex: Exception => { ex.printStackTrace() // 打印到标准err System.err.println("exception===>: ...") // 打印到标准err }}
1234567
try { val a = 1 / 0} catch { case ex: Exception => { println("bug") }}