在Java类Math中为sqrt()和pow()方法使用静态导入
静态导入意味着如果将类中的字段和方法定义为公共静态,则无需指定其类即可在代码中使用它们。
Math类方法sqrt()以及pow()java.lang包中的方法都是静态导入的。演示此过程的程序如下:
示例
import static java.lang.Math.sqrt;
import static java.lang.Math.pow;
public class Demo {
public static void main(String args[]) {
double num = 4.0;
System.out.println("The number is: " + num);
System.out.println("The square root of the above number is: " + sqrt(num));
System.out.println("The square of the above number is: " + pow(num, 2));
}
}输出结果
The number is: 4.0 The square root of the above number is: 2.0 The square of the above number is: 16.0
现在让我们了解上面的程序。
方法不需要Math类sqrt(),pow()因为java.lang包使用静态导入。显示数字num及其平方根和平方。演示此代码段如下:
double num = 4.0;
System.out.println("The number is: " + num);
System.out.println("The square root of the above number is: " + sqrt(num));
System.out.println("The square of the above number is: " + pow(num, 2));热门推荐
10 八一幼儿祝福语大全简短
11 公司乔迁食堂祝福语简短
12 婚礼结束聚餐祝福语简短
13 儿媳买车妈妈祝福语简短
14 毕业送礼老师祝福语简短
15 同事辞职正常祝福语简短
16 恭贺新婚文案祝福语简短
17 金店立秋祝福语简短英文
18 婆婆高寿祝福语大全简短