java.lang包下的 Math.pow(a,b) 方法,返回值是double。
参数: a - 底数。 b - 指数。 返回:返回第一个参数的第二个参数次幂的值。 值 a^b。
例子: int i = (int)Math.pow(2,3); // 8