Open
Conversation
Open
macqueen0987
left a comment
There was a problem hiding this comment.
자바를 기존에 하시던 분이라 그러신가 모르는 사람이 봐도 굉장히 정석적으로 구현하신것 같습니다.
처음에 볼때는 간단한 과제에 비해 너무 오버엔지니어링하신게 아닌가 싶었는데 오히려 정석적으로 코딩을 하려다 보니 길어진 것을 알고 나서 놀랐습니다.
제일 먼저 사용할 클래스들을 모두 추상적으로, 기본 뼈대만 구현한 후 모두 오버라이딩 하면서 구체화 하는것도 굉장히 인상깊었습니다.
glucosei
reviewed
Apr 1, 2025
glucosei
left a comment
There was a problem hiding this comment.
기능 구현하는 방식이 굉장히 세련되다는 느낌을 받았습니다. 다만, 개인적인 감상으로 Application의 main메서드에 너무 많은 기능이 몰려있다는 느낌을 받았습니다. 그래서 service가 특정한 기능을 구현한다기 보다 Application에 종속된 것 같다는 느낌이 들었습니다. 부족한 저의 식견이지만 Application의 책임을 좀 더 분산한다면 좋을 것 같습니다!
|
map과 List 등 다양한 자료형을 활용하여 application을 구현하신부분 흥미롭게 봤습니다XD |
Member
|
map이랑 enum 잘 사용하신 것 같습니다 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
int random_number = Randoms.pickNumberInRange(0,9);를 통해 랜덤 정수 생성RaceCar 객체를 통해 자동차에 대한 정보 관리
Application.java에서 Map을 활용하여 자동차 객체를 저장 후 count 수만큼 "-" 출력