網(wǎng)站制作NEWS
輸入11位數(shù)的電話號(hào)碼java練習(xí)
public static boolean excep(String exp){
if(exp.length() != 11){
try {
throw new Exception("手機(jī)號(hào)碼位數(shù)有誤,請(qǐng)仔細(xì)檢查");
} catch (Exception e) {
}
}
try {
Double.parseDouble(exp);
return true;
} catch (Exception e) {
try {
throw new Exception("手機(jī)號(hào)碼參數(shù)有誤,請(qǐng)仔細(xì)檢查");
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
return false;
}
這個(gè)只是思路,我沒有寫成異常類! 你自己改下吧
多重隨機(jī)標(biāo)簽