我已经写了这篇文章:
public static void main(String[] args) {
LinkedList<String> list = new LinkedList<>();//declare your list
Scanner input = new Scanner(System.in);//create a scanner
System.out.println("How many participants? ");
int nbr = input.nextInt();//read the number of element
input.nextLine();
do {
System.out.println("What is the name of the people?");
list.add(input.nextLine());//read and insert into your list in one shot
nbr--;//decrement the index
} while (nbr > 0);//repeat until the index will be 0
System.out.println(list);//print your list
输出为:
Jack, Frank
我想做的是更改链接列表的内容。例如,我写了2个名字杰克和弗兰克。然后,我想添加杰克的姓氏,以便链接列表是:
Jack Adam, Frank
我该怎么办?
您需要做的是使用set
方法更新要更新的特定位置。在这种情况下,将是这样的:
list.set(0, list.get(0) + " Adam");
请注意,我们正在获取列表的位置0的内容并与姓氏连接。