-
Notifications
You must be signed in to change notification settings - Fork 0
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
4주차 미션 제출 #4
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,23 @@ | |||
package bridge.domain; | |||
|
|||
public class GameStop { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 부분은 완전한 컨트롤러 부분
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
컨트롤러는 앱의 사용자로부터의 입력에 대한 응답으로 모델 및/또는 뷰를 업데이트하는 로직
import bridge.view.OutputView; | ||
import java.util.List; | ||
|
||
public class BridgeController { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Controller에서 너무 많은 담당을 하는거 같은데 이게 MVC 패턴의 단점이라고 함. 그걸 계산하기 위해서 5 layer architecture 라고 함. -> 한번 알아보는 걸로..
No description provided.