在Python,我可以做到以下幾點:Scala:除了scala之外,還有其他的嘗試嗎?
try{
something
}
except{
whoops that didn't work, do this instead
}
,我試圖找出是否有一種方法可以做到這同樣的事情在斯卡拉。我看到很多方法來捕獲異常,但我沒有看到一種方法來忽略異常並執行其他操作。
編輯:
所以這裏就是我在斯卡拉嘗試:
try{
something
}
catch{
case ioe: Exception => something else
}
但它似乎並不喜歡它......
python的'try ... except'與scala的'try ... catch'不同嗎?你想處理所有的異常或只是一些特定的? –