-
在源文件中显式的使用import结构导入指定包下的类、接口
-
声明在包的声明和类的声明之间
-
如果需要导入多个结构,则并列写出即可
-
可以使用"xxx.*"的方式,表示可以导入xxx包下的所有结构
-
如果使用的类或接口是java.lang包下定义的,则可以省略import结构
-
如果使用的类或接口是本包下定义的,则可以省略import结构
-
如果在源文件中,使用了不同包下的同名的类,则必须至少有一个类需要以全类名的方式显示。
-
使用"xxx.*"方式表明可以调用xxx包下的所有结构。但是如果使用的是xxx子包下的结构,则仍需要显式导入
-
import static:导入指定类或接口中的静态结构:属性或方法。
package com.atguigu.java2;import java.lang.reflect.Field;
import java.util.*;import com.atguigu.exer4.Account;
import com.atguigu.exer4.Bank;
import com.atguigu.java2.java3.Dog;import static java.lang.System.*;
import static java.lang.Math.*;public class PackageImportTest {public static void main(String[] args) {String info = Arrays.toString(new int[]{1,2,3});Bank bank = new Bank();ArrayList list = new ArrayList();HashMap map = new HashMap();Scanner s = null;System.out.println("hello!");Person p = new Person();Account acct = new Account(1000);//全类名的方式显示com.atguigu.exer3.Account acct1 = new com.atguigu.exer3.Account(1000,2000,0.0123);Date date = new Date();java.sql.Date date1 = new java.sql.Date(5243523532535L);Dog dog = new Dog();Field field = null;out.println("hello");long num = round(123.434);}
}