劍指offer之 字符串轉數字(java實現)

字符串轉換成數字: 這個問題主要是處理邊界和非法輸入比較麻煩。java public int strToInt(String str) { if (str == null || str.trim().isEmpty()) { throw new RuntimeException("輸入錯誤,沒法轉換成字符串"); } char
相關文章
相關標籤/搜索