vector 썸네일형 리스트형 Vector 저장데이터, 총크기, 데이터 조회 Vector 저장데이터, 총 크기, 데이터 조회 import java.util.*; class Employee{ int id; // 사번 String name; // 이름 double pay; // 급여 // 멤버 변수를 초기화해주는 것이 생성자(기본 개념 숙지) public Employee(int id, String name, double pay) { this.id = id; this.name = name; this.pay = pay; } @Override public String toString() { return "Employee [id=" + id + ", name=" + name + ", pay=" + pay + "]"; } } public class VectorTest { public stat.. 더보기 이전 1 다음