-
Notifications
You must be signed in to change notification settings - Fork 140
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
[부산대 BE_장진영] 미션 제출합니다. #143
Open
ddglackrp
wants to merge
28
commits into
next-step:main
Choose a base branch
from
ddglackrp:ddglackrp
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
구현할 기능 목록 추가
Computer (상대방) 클래스 추가
1, createBaseballNumber() - 1~9 까지 수 중 겹치지 않는 3자리 랜덤 수 생성 2. 생성자 - 클래스 생성시 createBaseballNumber() 함수를 이용한 3자리 수 초기화
1. reGenerateNumber() - createBaseballNumber()를 이용해 3자리 숫자 재할당
1. getNumber() : getter 추가 2. changeNumber : Test 에서 사용할 setter 기능 함수 추가
- 숫자 야구 게임 핵심 로직 가지는 클래스 추가
- checkStrike : 사용자의 입력을 이용해 스트라이크 수 체크하는 함수 추가
- checkBall : 사용자의 입력을 이용해 볼 수 체크하는 함수 추가
- printGameInfo : 스트라이브, 볼, 낫싱 정보 출력하는 함수
- 숫자 야구 main 함수 추가
- UTF-8 인코딩 의존성 추가
- 숫자 중복 체크 로직 filter 적용
- playGame : 게임을 계속 진행하는지에 대한 조건 - collectAnswer : 클라이언트의 대답이 정답인지에 대한 조건
1. class 명 변경 : BaseBallGame -> BaseBallGameService 2. printGameInfo : 출력 -> 출력할 내용 return 으로 변경 3. checkNumberValid : 숫자가 유효한 입력인지 확인하는 함수
1. 유효하지 않은 입력에 대해 try-catch 문으로 exception handling 2. static method 추출
- 유효하지 않은 입력 : IllegalArgumentException 발생 - 유효한 입력 : return true
1. static 함수 Application 멤버 함수로 변경 2. 멤버 변수 추가 3. 기존 메인 함수 Application start 함수로 변경 4. 메인 함수 변경
- IllegalArgumentException catch 하지 않고 throw
- 1~9 까지의 서로다른 3개 수 선택하는지 확인 테스트 추가
- IllegalArgumentException try catch 문 추가
- userInvalidInputTest : 출력값 비교로 변경 - userInvalidInputTest2 : 출력값 비교로 변경
- build.gradle 기본 상태로 원복
- UTF-8 관련 설정 추가
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.
No description provided.