HashSet

    [자바/JAVA] 프로그래밍 - 컬렉션(Collection)_HashSet

    Student Class package com.kh.chap02_set.part01_hashSet.model.vo; public class Student { private String name; private int age; private int score; public Student() { } public Student(String name, int age, int score) { super(); this.name = name; this.age = age; this.score = score; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() {..