1. ホーム
  2. java

[解決済み] Javaで整数の除算を丸め、結果をint型にする方法は?[重複しています]。

2022-02-28 15:39:35

質問

携帯電話のSMSのページ数をカウントする小さなメソッドを書いただけです。を使って切り上げるというオプションはありませんでした。 Math.ceil 正直なところ、とても不格好です。

以下は私のコードです。

public class Main {

/**
 * @param args the command line arguments
 */
public static void main(String[] args) {
   String message = "today we stumbled upon a huge performance leak while optimizing a raycasting algorithm. Much to our surprise, the Math.floor() method took almost half of the calculation time: 3 floor operations took the same amount of time as one trilinear interpolation. Since we could not belive that the floor-method could produce such a enourmous overhead, we wrote a small test program that reproduce";

   System.out.printf("COunt is %d ",(int)messagePageCount(message));



}

public static double messagePageCount(String message){
    if(message.trim().isEmpty() || message.trim().length() == 0){
        return 0;
    } else{
        if(message.length() <= 160){
            return 1;
        } else {
            return Math.ceil((double)message.length()/153);
        }
    }
}

私はこのコードがあまり好きではないので、もっとエレガントな方法を探しています。このコードでは、私は3を期待していますが、3.0000000ではありません。何かアイデアはありますか?

どのように解決するのですか?

整数の割り算を四捨五入するには

import static java.lang.Math.abs;

public static long roundUp(long num, long divisor) {
    int sign = (num > 0 ? 1 : -1) * (divisor > 0 ? 1 : -1);
    return sign * (abs(num) + abs(divisor) - 1) / abs(divisor);
}

または、両方の数値が正の場合

public static long roundUp(long num, long divisor) {
    return (num + divisor - 1) / divisor;
}