一、將 int 整數透過 String 轉換,溢出捕獲
class Solution { public int reverse(int x) { long nums = 0; int temp = 1; try { temp = x / Math.abs(x); StringBuilder num = new StringBuilder(); num.append(Math.abs(x)); nums = Long.parseLong(num.reverse().toString()); if(nums > Math.pow(2, 31) - 1) { return 0; } } catch (Exception e) { // TODO: handle exception return 0; } return (int)nums*temp; } }
字串轉換的效率較低且使用較多函式庫函數。
(建議學習影片教學:java影片教學)
二、取餘方式
class Solution { public int reverse(int x) { int ans = 0; while(x != 0) { // 判断溢出 if((ans * 10) / 10 != ans) { ans = 0; break; } // ans*10 没有溢出 ans = ans * 10 + x % 10; x /= 10; } return ans; } }
(ans * 10) / 10 其中的 ans *10 ,java虛擬機內部實際上是進行了數值類型提升,即溢出時,用long類型數據暫時存儲,最後通過變窄轉換,保留低32位數值得到 (ans * 10) / 10 != ans 。因此是不能滿足只儲存32位元整數的條件的。
相關文章教學推薦:java入門教學
#以上是java實現整數反轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!