Java Number Power pow(Integer a, Integer b)

Here you can find the source of pow(Integer a, Integer b)

Description

Pow.

License

Open Source License

Parameter

Parameter Description
a the a
b the b

Return

the double

Declaration

public static double pow(Integer a, Integer b) 

Method Source Code

//package com.java2s;

public class Main {
    /**/*ww  w.  ja  v  a 2s .c  o m*/
     * Pow.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double pow(Short a, Short b) {
        return Math.pow(a.doubleValue(), b.doubleValue());
    }

    /**
     * Pow.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double pow(Integer a, Integer b) {
        return Math.pow(a.doubleValue(), b.doubleValue());
    }

    /**
     * Pow.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double pow(Float a, Float b) {
        return Math.pow(a.doubleValue(), b.doubleValue());
    }

    /**
     * Pow.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double pow(Long a, Long b) {
        return Math.pow(a.doubleValue(), b.doubleValue());
    }

    /**
     * Pow.
     *
     * @param a the a
     * @param b the b
     * @return the double
     */
    public static double pow(Double a, Double b) {
        return Math.pow(a, b);
    }
}

Related

  1. pow(int n, int p)
  2. pow(int number, int power)
  3. pow(int value, int exp)
  4. pow(int x, int y)
  5. pow(int[] arr, double p)
  6. pow(long base, long exp)
  7. pow(long n, long pow)
  8. pow(long value, long pow)
  9. pow(Number x, Number exponent)