public class Stack {
Student Sarray[] = new Student[1000];
int nrElem=0;
public Student[] getAll(){
return this.Sarray;
}
public void push(Student x){
this.nrElem++;
this.Sarray[this.nrElem]=x;
}
}
我尝试手动实现一个堆栈,但我遇到了一个小问题。我插入的第一个元素被存储并在我插入另一个元素时被替换。我做错了什么?
public class Ctrl {
Stack x = new Stack();
public void addC(Student s){
if(findById(s.getId()) != null) {
System.out.println("Err!Duplicate id!/n");
} else {
if(s.getGrade()>10)
System.out.println("Err!Grade bigger than 10!/n");
else{
x.push(s);
}
}
}
public Student findById(int id){
Stack y=new Stack();
y=x;
Student z= new Student() ;
for(int i=1;i<=y.getNrElem();i++){
z=y.pop();
if (z.getId()==id)
return z;
}
return null;
}
Stack 和 Ctrl 的 2 个不同模块。