/**
- import详解
/
//如果我们要使用其他包的类,需要使用import导入,从而可以在本类中直接通过类名来调用,
// 否则就需要书写类的完整包名和类名。import后,便于编写代码,提高可维护性。
import java.util.;//导入该包下所有的类。会降低编译速度,但不会降低运行速度。
import static java.lang.Math.PI;//导入特指的lang包下的math类
import Chapter.four.*;//想调用另一个文件中的类,就用import导入下
public class Test074 {
public static void main(String[] args) {
System.out.println(PI);
Test075 test075=new Test075();
// Chapter.four.Test075 test0751=new Chapter.four.Test075(); ,如果上面不导入,这样写更直接
}
}