在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 低调祝福语简短10字
12 老师祝福语简短100字
13 送笔筒的祝福语简短
14 教练生日祝福语 简短独特
15 爱情贺卡祝福语简短英语
16 大雪生日祝福语大全简短
17 虎年公司祝福语简短的
18 简短的祝福语12字