用示例列出Java中的 add() 方法
List 接口的此方法用于将参数中的指定元素附加到列表的末尾。
句法:
boolean add(E e)
参数:此函数有一个参数,即 e - 要附加到此列表的元素。
返回:如果指定的元素被附加并且列表发生变化,则返回true。
下面的程序显示了这种方法的实现。
方案一:
// Java code to show the implementation of
// add method in list interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
List l = new ArrayList<>();
l.add(10);
l.add(15);
l.add(20);
System.out.println(l);
}
}
输出:
[10, 15, 20]
程序 2:下面是显示使用 Linkedlist 实现 list.add() 的代码。
// Java code to show the implementation of
// add method in list interface using LinkedList
import java.util.*;
public class CollectionsDemo {
// Driver code
public static void main(String[] args)
{
List ll = new LinkedList<>();
ll.add(100);
ll.add(200);
ll.add(300);
ll.add(400);
ll.add(500);
System.out.println(ll);
}
}
输出:
[100, 200, 300, 400, 500]
参考:
甲骨文文档