Java 常見(jiàn)異常NumberFormatException
提問(wèn)人:劉旭39發(fā)布時(shí)間:2020-11-30
NumberFormatException
java.lang.NumherFormatException是數(shù)字異常,通常是將一個(gè)String類型字符串轉(zhuǎn)換為指 定數(shù)宇類型時(shí)引發(fā)的異常。當(dāng)字符串不滿足要轉(zhuǎn)換的數(shù)字類型所要求的格式時(shí),會(huì)拋出 NumberFormatException異常。
//NumberFormatException
public class Demo {
public static void main(String[] args) throws Exception {
String str = "zuixu";
Double num = Double.parseDouble(str);
}
}
繼續(xù)查找其他問(wèn)題的答案?
相關(guān)視頻回答
點(diǎn)擊加載更多評(píng)論>>