返回列表 發帖

例外處理- Exception ( try catch )

  1.         try{
  2.             String strInput = jTextField1.getText();
  3.             double height = Double.parseDouble(strInput);
  4.             String strInput2 = jTextField2.getText();
  5.             double weight = Double.parseDouble(strInput2);
  6.             double BMI = weight / (height*height);
  7.             jLabel2.setText("您的BMI值為: " + BMI);
  8.         }
  9.         catch(Exception ex)
  10.         {
  11.             jLabel2.setText("發生無預期錯誤:" + ex.toString());
  12.         }
複製代碼

返回列表