驗證 Double 的整數狀態
確定雙精確度浮點數是否為整數值在各種程式設計中非常有用場景。在提供的程式碼片段中:
double variable; variable = 5; /* the below should return true, since 5 is an int. if variable were to equal 5.7, then it would return false. */ if(variable == int) { //do stuff }
表達式變數 == int 無法計算,因為 int 指的是資料型,而不是特定的整數值。要檢查雙精度數是否確實是整數,可以採用替代方法。
使用模運算子:
一種方法涉及使用模運算子 (%):
if variable % 1 == 0: # The variable is an integer since its remainder when divided by 1 is zero
這種方法利用了浮點算術中整數除法的結果總是餘數為零的事實。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3