123456789101112131415/** * 测试静态导入 * @author 葛宇 */package 面向对象;import static java.lang.Math.PI;public class TestStaticImport { public static void main(String[] args) { System.out.print(PI); }}//静态导入关键字:import static xxx;//要求导入的东西必须是静态属性如静态成员方法或静态常量等