-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[자동차 경주] 곽상진 미션 제출합니다. #94
Open
DDangDin
wants to merge
30
commits into
woowacourse-precourse:main
Choose a base branch
from
DDangDin:ddangdin
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
- 자동차 이름을 입력 받고 쉼표(,)로 구분
- 시도할 횟수를 입력 받고 정수형으로 변환
- 게임 시작 전 입력받고 문구 출력하는 기능을 RacingCarSetup 클래스에 캡슐화
- 시도할 횟수가 숫자가 아니라면 예외 발생하게 구현
- NsTest 코드를 복사해서 입맛에 맞게 수정 - RacingCarSetupTest 에서 NsTestCopy 사용
- indent depth가 3이 넘지 않도록 수정
- 자동차 클래스 생성 - 자동차에 이름 부여 - 이름 예외처리
- 자동차 객체는 전진하거나 멈출 수 있지만 실질적으로 관여하는 메서드는 1개이다. (전진할 때 메서드: moveForward, 멈출 때: 아무 작업 X) - 자동차 클래스에서 moveForwardAndStop 메서드는 인자 값을 판단하여 전진하거나 멈추거나 결정한다. - 기타 사항1: 자동차 이름 5자 이상일 때 예외처리 - 기타 사항2: README.md 자동차 행위 기능 업데이트
- CarTest 추가하면서 Car 클래스에서 canMoveForward 메서드 부등호 조건 변경
- RacingCarGame 클래스를 추가하고 무작위 숫자를 얻어서 자동차를 움직이게끔 까지 구현
- 게임 진행 시 자동차의 이름과 전진 표시를 출력하는 기능 구현
- 게임이 진행되는 순간마다 자동차 이름과 점수를 Map에 저장해서 가장 높은 점수인 사람이 우승자가 되도록 구현 - 여러 명일 경우 쉼표(,)로 구분해서 출력 - 게임 진행 시 진행 문구 출력 추가
- rebase 하면서 삭제된 자동차 이름 예외 처리를 추가
- 자동차 이름을 각각 확인 하면서 예외 처리 하게끔 수정
- 자동차 이름 예외 테스트 추가 - 테스트 데이터 동반객체로 분리
- RacingCarGame에서 필요한 값을 RacingCarSetup에서 가져온다. - 문자열 리스트에서 Car 객체로 매핑해주는 함수 추가
- 프로퍼티가 하나라면 한 줄에 작성하도록 수정 - 클래스 메서드 위치를 로직 이해하기 쉬운 순으로 수정
- 최종 우승자 텍스트 추가 - 실행결과 텍스트 출력 전 줄넘김 추가
- 패키지 자체가 racingcar 이니까 접두어 RacingCar는 제외한 상태로 수정
- 행위(메서드) 명 명확하도록 수정 - 상수 값 동반객체로 관리
- 클래스명을 Initializer 로 수정 - 역할에 맞게 메서드 명 수정 - 역할에 맞게 메서드를 작게 분리 - 통일성을 위해 속성명 수정 (tryCount -> gameCount) - 클래스 수정에 따라 Application 수정
- 역할에 맞게 메서드 작게 분리 - 변수명 명확하게 수정
- 전부 체크 완료
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.
이름
들을 입력 받고쉼표(,)
를 기준으로 구분한다.몇 번의 이동
을 할 것인지를입력
할 수 있어야 한다.주어진 횟수
동안n대의 자동차
는전진
또는멈출
수 있다.)0에서 9 사이
에서무작위 값
을 구한 후 무작위 값이4 이상
일 경우이다.자동차 이름을 같이 출력
한다.여러 명일 경우
쉼표(,)
를 이용하여 구분한다.IllegalArgumentException
을 발생시킨 후 애플리케이션은 종료되어야 한다.