[Student] Lombok 적용(@Getter, @Setter)
·
◈ Human Project/Custom : Student🏫
[Student] Exception 적용(RangeException, NumberFormatException) 로 배열 수정" data-og-description="1. interface 분리 package service; public interface StudentService { void list(); void register(); void modify(); void remove(); } 2. ArrayList로 배열 수정 -.. yermi.tistory.com 1. class Student에 Lombok 적용하기 [꿀팁] Eclipse에 롬복(Lombok) 연동하기[코드 축약 라이브러리, Lombok] 1. Lombok 다운로드 및 설치 Project Lombok projectlombok.org 2..
[Student] Exception 적용(RangeException, NumberFormatException)
·
◈ Human Project/Custom : Student🏫
[Student] interface 분리, ArrayList로 배열 수정 1. interface 분리 package service; public interface StudentService { void list(); void register(); void modify(); void remove(); } 2. ArrayList로 배열 수정 - class StudentServiceImpl List stude.. yermi.tistory.com 1. class RangeException 생성하기 package exception; public class RangeException extends RuntimeException { private int start; private int end; public Rang..
[Student] interface 분리, ArrayList<>로 배열 수정
·
◈ Human Project/Custom : Student🏫
[Student] Exception 적용(RangeException, NumberFormatException) 로 배열 수정" data-og-description="1. interface 분리 package service; public interface StudentService { void list(); void register(); void modify(); void remove(); } 2. ArrayList로 배열 수정 -.. yermi.tistory.com
[Student] package 분리, Scanner 기능 모듈화, private 적용, 삭제 기능 구현
·
◈ Human Project/Custom : Student🏫
[Student] toString 정의, 수정 기능 구현 - toString 정의 // toString 정의 public String toString() { return String.format(" %5s%5s \t %3d \t %3d \t %3d \t %3d \t %2.2f", no, name, kor, eng, mat, sum(), avg()); } - 수정 기능 구현 void mo.. yermi.tistory.com 1. package 분리 2. Scanner에서 자주 사용되는 기능 모듈화 package domain; public class Student { // toString 정의 public String toString() { return String.format(" %5s%5s \t %3d ..
[Student] toString 정의, 수정 기능 구현
·
◈ Human Project/Custom : Student🏫
[Student] 생성자 정의, 조회 기능, 등록 기능 구현 - 생성자 만들기 // 생성자 만들기 Student() {} Student(String no, String name, int kor, int eng, int mat) { this.no = no; this.name = name; this.kor = kor; this.eng = eng; this.mat = mat; } - 조회.. yermi.tistory.com 1. toString 정의 // toString 정의 public String toString() { return String.format(" %5s%5s \t %3d \t %3d \t %3d \t %3d \t %2.2f", no, name, kor, eng, mat, sum(), avg(..