import static java.lang.Math.*;//static import之后
public class TestStaticImport{
public static void main(String args[]){
...
round(1.5d);//Math.round(1.5d);可以简写成round(1.5d);
...
}
}
import static java.lang.Math.*;//static import之后
public class TestStaticImport{
public static void main(String args[]){
...
round(1.5d);//Math.round(1.5d);可以简写成round(1.5d);
...
}
}