-
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
Udemy/Ts/section5/69: abstract #45
Open
4BFC
wants to merge
53
commits into
UdemyTs
Choose a base branch
from
Udemy/Ts/section5/69
base: UdemyTs
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
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 작성한 커밋입니다.
Github에서 작성한 커밋입니다.
Github에서 수정한 커밋입니다.
Github에서 수정한 커밋입니다.
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.
✍Udemy/Ts/section5/69: abstract
🔗Reference
🔥KeyWord
📝Description
describe
함수를abstract
함수로 변경하였다. 따라서 abstract인 추상 함수를 사용하라면 해당 class 또한 abstract로 정의 되어야 한다. 추상 함수로 변경한describe
는 이제 Department와 연관된 모든 클래스들은 Error가 발생할 것이다. 추가적으로abstract
함수로 정의된 함수에는 어떠한 것도 정의되어 있으면 안된다.describe
함수 내부에 필요한 것들을 할당, 정의해도 무관하다. 더 나아가Department
클래스에서 private로 설정한 접근제한자들을protected
로 변경해야한다. 이를 통해서 클래스 내부에서만 사용할 수 있었던 함수, 변수, 매개변수들을 외부, 상속받은 class에서 사용, 접근 할수 있기 때문이다.📌Summary
싱글톤 패턴
을 사용해서 문제를 해결할 수 있다.