Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
실행 결과
객체의 역할과 책임
학교
학생
원서
원서 접수 프로세스
이슈 리포트: 원서는 한 번만 제출할 수 있다?
학교 객체의 원서 접수 받기 메서드에서 원서를 이미 제출했는지 검증합니다.
원서를 작성할 때 학생 객체가 들고 있는 원서를 저장한다
이때, 원서를 다시 작성해 재제출 하면 학생이 들고 있는 원서와 학교가 들고있는 원서의 불일치 문제가 일어납니다.
원서를 검증한 이후로 제출된 원서를 돌려주자
그럼 원서를 검증한 이후로 확실한 원서를 돌려주면 불일치 문제를 해결할 수 있습니다.
불일치 문제가 해결됩니다.
하지만, 오류가 발생했는데 잘 제출된 원서를 돌려주는 것은 논리상 말이 안 됩니다.
작성한 원서와 제출한 원서 분리
그래서 작성한 원서와 제출한 원서를 분리했습니다.
이렇게 하면 오류가 발생했을 때 원서를 돌려주지 않아도 됩니다.
작성한 원서를 저장하지 않고 그냥 main 함수에서 들고 있으면 되는 거 아닌가요?
main 함수는 그저 일의 순서에 따라 코드를 실행할 뿐
원서를 제출할 책임은 없습니다.
따라서 다음과 같은 코드는 객체 간의 긴밀한 협력을 해치는 코드입니다.
정답은 없다
코드에 정답은 없습니다.
그저 참고용으로 봐주시면 됩니다!