gpt4 book ai didi

java - 将先前添加的对象的成员打印到链表中

转载 作者:行者123 更新时间:2023-12-01 15:18:35 25 4
gpt4 key购买 nike

我对 Java 编程比较陌生,目前正在尝试用 Java 实现链接列表。我有一个名为学生的类(class)。其中有以下成员 - Name、MarksObtained。现在,我想将各个学生对象一一添加到链表中。

My_query1: Again, while traversing the list i want to print only the member - MarksObtained.

My_query2: The iterator interface method, itr.next() returns __________ ?

My_query3: If i create objects of the class student with the same name iteratively and simultaneously add it to the linked list, is it valid?

public static void main(String []args){
LinkedList al = new LinkedList();
for(int i=0; i<100; i++){
student s = new student();
s.MarksObtained = i;
s.Name = "blah";
al.add(s);
}
}

谢谢。

最佳答案

My_query1:同样,在遍历列表时,我只想打印成员 - MarksObtained。

您可以使用以下代码遍历列表,该代码利用了列表的可枚举性。

for (student item : al) {
System.out.println(item.MarkObtained)
}

My_query2:迭代器接口(interface)方法,itr.next() 返回____ ?

itr.next() 根据您将其添加到列表的方式(或排序后的排序顺序)返回列表的下一项。以下代码是迭代列表的另一种方式

Iterator<student> itr = al.listIterator(0);
while (itr.hasNext()) {
student item = itr.next();
System.out.println(item.MarkObtained);
}

My_query3:如果我迭代创建类(class)学生的同名对象,同时将其添加到链表中,是否有效?

是的,只要您每次都是“新的”,这就是有效的。如果您不新建它们但更改其成员值,则已添加到列表中的所有项目也会更改值,因为它们的对象引用相同(因此您最终会看到列表充满了您上次添加的项目 - 所有相同)。

关于java - 将先前添加的对象的成员打印到链表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11294351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com