Basically I want it to stop and print a message if they've already added that person to the ArrayList, but it won't do that.
Here's the method:
@Override
public boolean equals(Object o) {
if (this.name == ((Student)o).getName() && this.ID == ((Student)o).getID()) {
return true;
}
else {
return false;
}
}
And the code section it's used in:
public void addStudents() {
Scanner keyboard = new Scanner(System.in);
String name = "", ID = "";
System.out.println("Welcome! Please type exit at any point to stop entering students and for the lottery to commence.\n");
System.out.print("Student name: ");
name = keyboard.nextLine();
if (!name.equals("exit")) {
System.out.print("Student ID: ");
ID = keyboard.nextLine();
}
while (!name.equals("exit") && !ID.equals("exit")) {
System.out.print("\nStudent name: ");
name = keyboard.nextLine();
if (!name.equals("exit")) {
System.out.print("Student ID: ");
ID = keyboard.nextLine();
if (!ID.equals("exit")) {
boolean contains = false;
for (int i = 0; i < students.size(); i++) {
if (students.get(i).equals((new Student(name, ID)))) {
contains = true;
}
}
if (!contains) {
students.add(new Student(name, ID));
}
else {
System.out.println("You can only enter once.");
}
}
}
}
}
I've toiled over this for quite awhile, but can't put my finger on why it won't work.