欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Scala的try表达式和match表达式

程序员文章站 2022-04-22 09:39:55
...

一 try 表达式


Scala的try表达式和match表达式
            
    
    博客分类: Scala Scalatrymatchtry 
 
二 match表达式

Scala的try表达式和match表达式
            
    
    博客分类: Scala Scalatrymatchtry 
 
三 实例
  1. object try_match {
  2. val result_try =try{
  3. Integer.parseInt("dog")
  4. }catch{
  5. case _=>0
  6. }finally{
  7. println("always be printed")
  8. }//> always be printed
  9. //| result_try : Int = 0
  10. val code =3//> code : Int = 3
  11. val result_match=code match{
  12. case1=>"one"
  13. case2=>"two"
  14. case _ =>"others"
  15. }//> result_match : String = others
  16. }
  • Scala的try表达式和match表达式
            
    
    博客分类: Scala Scalatrymatchtry 
  • 大小: 91.2 KB
  • Scala的try表达式和match表达式
            
    
    博客分类: Scala Scalatrymatchtry 
  • 大小: 104.4 KB