web-dev-qa-db-ja.com

整数除算を切り上げて、Javaでintを生成する方法は?

携帯電話の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.0000000ではなく3が期待されます。何か案は?

76
black sensei

整数除算を切り上げるには、次を使用できます

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;
}
103
Peter Lawrey

Math.ceil()を使用して、結果をintにキャストします。

  • これは、abs()を使用してダブルを回避するよりも高速です。
  • -0.999は0に切り上げられるため、ネガを使用する場合の結果は正しいです。

例:

(int) Math.ceil((double)divident / divisor);
144
Roman

複雑すぎない別のワンライナー:

private int countNumberOfPages(int numberOfObjects, int pageSize) {
    return numberOfObjects / pageSize + (numberOfObjects % pageSize == 0 ? 0 : 1);
}

Intの代わりにlongを使用できます。パラメータの型と戻り値の型を変更するだけです。

37
popstr

GoogleのGuavaライブラリ IntMathクラスでこれを処理します

IntMath.divide(numerator, divisor, RoundingMode.CEILING);

ここでの多くの回答とは異なり、負の数を処理します。また、ゼロで除算しようとすると、適切な例外がスローされます。

18
(message.length() + 152) / 153

これにより、「切り上げられた」整数が得られます。

11
dee-see
long numberOfPages = new BigDecimal(resultsSize).divide(new BigDecimal(pageSize), RoundingMode.UP).longValue();
8
mekazu

Aをbで割った値を切り上げて計算する場合は、(a +(-a%b))/ bを使用できます

0