Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for validateIntegerMultiplication (1.63 sec)

  1. src/main/java/jcifs/util/InputValidator.java

         *
         * @param a first operand
         * @param b second operand
         * @param operation the operation name
         * @throws ArithmeticException if operation would overflow
         */
        public static void validateIntegerMultiplication(int a, int b, String operation) {
            long result = (long) a * (long) b;
            if (result > Integer.MAX_VALUE || result < Integer.MIN_VALUE) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.5K bytes
    - Viewed (0)
Back to top