程序開發中,格式轉換的時候,常常因爲字符串多是其餘的不可預知的符號致使,字符串轉數值失敗,spa
這個時候能夠妙用try catch來解決,以下圖所示。其實,不少其餘不可預知的異常狀況,也能夠用它來處理。code
public static int StringToInt(String s) { try { return Integer.parseInt(s); } catch (NumberFormatException e) { return -999; } }