/*
import语句可以导入一个类或某个包的所有类
import static语句导入一个类中的某个静态方法、某个静态变量 、所有静态方法、所有静态变量
*/
import java.lang.Math;
public class Test {
public static void main(String[] args) throws Exception {
int a = 3;
int b = 4;
System.out.println(Math.max(a, b));
System.out.println(Math.abs(a - b));
}
}
import static java.lang.Math.max;
import static java.lang.Math.abs;
//或者去掉上面两行, 用下面一行代替
//import static java.lang.Math.*; (全部静态变量与方法)
public class Test{
public static void main(String[] args) throws Exception {
int a = 3;
int b = 4;
System.out.println(max(a, b));
System.out.println(abs(a-b));
}
}