Here you can find the source of pow(Integer a, Integer b)
Parameter | Description |
---|---|
a | the a |
b | the b |
public static double pow(Integer a, Integer b)
//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); } }