import语句可用于导入整个程序包,有时还可用于导入程序包内的某些类和接口。import语句写在类定义之前和package语句之后(如果有)。另外,import语句是可选的。
给出了一个用Java演示此程序的程序,如下所示:
import java.util.LinkedList; public class Demo { public static void main(String[] args) { LinkedList<String> l = new LinkedList<String>(); l.add("Apple"); l.add("Mango"); l.add("Cherry"); l.add("Orange"); l.add("Pear"); System.out.println("The LinkedList is: " + l); } }
输出结果
The LinkedList is: [Apple, Mango, Cherry, Orange, Pear]
现在让我们了解上面的程序。
LinkedList类在java.util包中可用。import语句用于导入它。然后创建LinkedList l。LinkedList.add()用于将元素添加到LinkedList。然后显示LinkedList。演示此代码段如下:
LinkedList<String> l = new LinkedList<String>(); l.add("Apple"); l.add("Mango"); l.add("Cherry"); l.add("Orange"); l.add("Pear"); System.out.println("The LinkedList is: " + l);