Java新手,所以如果我的问题看起来很愚蠢,请耐心等待。
我正在学习收藏,我写了一个程序,它将存储学生姓名id和marks.I我将所有这些存储在Arraylist中。 使用for循环我可以在程序中打印值。 但是我无法知道如何使用Iterator来做到这一点。 我的代码是这样的。
Student.Java
public class Student{
private String name;
private String rollno;
private String biology;
private String maths;
private String science;
public Student(String name,String rollno,String biology,String maths,String science){
setName(name);
setRollno(rollno);
setBiology(biology);
setMaths(maths);
setScience(science);
}
public void setRollno(String rollno){
this.rollno=rollno;
}
public String getRollno(){
return rollno;
}
public void setName(String name){
this.name=name;
}
public String getName(){
return name;
}
public void setBiology(String biology){
this.biology=biology;
}
public String getBiology(){
return biology;
}
public void setMaths(String maths){
this.maths=maths;
}
public String getMaths(){
return maths;
}
public void setScience(String science){
this.science=science;
}
public String getScience(){
return science;
}
}
College.Java是我的主要课程
import java.util.*;
public class College{
public static void main(String args[]){
ArrayList<Student> details = new ArrayList<Student>();
Student Jb=new Student("Jb ","417","92","97","90");
Student Laxman=new Student("Lucky","418","93","97","96");
Student Ajay=new Student("AJ ","419","89","95","93");
Student Venky=new Student("Venky","420","96","90","91");
Student Satti=new Student("Satti","421","70","94","96");
details.add(Jb);
details.add(Laxman);
details.add(Ajay);
details.add(Venky);
details.add(Satti);
for(int i=0;i<details.size();i++)
{
Student student=details.get(i);
System.out.println("Student Name : "+student.getName()+" Roll Number : "+student.getRollno()+" Biology : "+student.getBiology()+" Maths : "+student.getMaths()+" Science : "+student.getScience());
}
}
}
在这种情况下,我得到正确的输出。
如果我删除for循环并用迭代器替换。我收到一些错误,说Object can not be converted as Student
这是我的代码
ListIterator itr=details.listIterator();
while(itr.hasNext())
{
//Object student=itr.next();
Student student=itr.next();
System.out.println("Student Name : "+student.getName()+" Roll Number : "+student.getRollno()+" Biology : "+student.getBiology()+" Maths : "+student.getMaths()+" Science : "+student.getScience());
}
请指导我这里有什么问题以及如何纠正。
答案 0 :(得分:3)
如你所知,你必须明确地施展它:
Student student=(Student)itr.next();
或更改ListIterator以使用泛型
ListIterator<Student> itr=details.listIterator();
但另一个更容易阅读的替代方案是foreach循环
for (Student student : details) {
System.out.println("Student Name : "+student.getName()+" Roll Number : "+student.getRollno()+" Biology : "+student.getBiology()+" Maths : "+student.getMaths()+" Science : "+student.getScience());
}
答案 1 :(得分:3)
有两种方法可以解决这个问题。使用泛型或添加显式转换。您可以将泛型与ListIterator一起使用。
&#xA;&#xA; ListIterator&lt; Student&gt; itr = details.listIterator();&#xA;
&#xA;&#xA; 或者用另一种方式,您可以将从Iterator接收的对象转发给学生。
&#xA;&#xA; 学生=(学生) itr.next();&#XA; 代码>
&#XA;
答案 2 :(得分:2)
您错过了ListIterator
。
ListIterator<Student> itr=details.listIterator();
没有理由在这个时代开始施法。
答案 3 :(得分:1)
问题在于如何创建ListIterator实例以使迭代器导航。
您的以下声明将假定ListIterator是默认引用类型,即Object。
ListIterator itr=details.listIterator();
通过指定您正在处理的参考对象的确切类型来更改上述声明,在您的情况下“学生”。
ListIterator<Student> itr=details.listIterator();
那应该可以解决你的问题。如果有,请告诉我。
答案 4 :(得分:1)
如果您想使用Iterator pattern
。你的代码应该是:
Iterator<Student> itr = details.iterator();
while (itr.hasNext()) {
Student student = itr.next();
System.out.println("Student Name : " + student.getName() + " Roll Number : " + student.getRollno() + " Biology : " + student.getBiology() + " Maths : " + student.getMaths() + " Science : " + student.getScience());
}
您应该查看ListIterator的Javadoc,以了解Iterator
和ListIterator
之间的差异。
使用ListIterator
,您可以
答案 5 :(得分:0)
请提及您将使用的参考对象的类型。 在你的情况下,它将是学生对象。
/* If you want to use iterator here is the sample code */
ListIterator<Student> studentItr = details.listIterator();
while(studentItr.hasNext())//This method returns boolean value,if there is an element and pointer has not reached at the end of list it returns true.
{
Student student = studentItr.next();//Method returns the next element and proceeds the cursor tp next index.
System.out.println(student.getName());
System.out.println(student.getRollno());
}