-
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/70: singleton pattern #46
Open
4BFC
wants to merge
54
commits into
UdemyTs
Choose a base branch
from
Udemy/Ts/section5/70
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.
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/70: singleton pattern
🔗Reference
🔥KeyWord
📝Description
singleton pattern
을 사용해서 문제를 해결할수 있다.constructor
)의 접근제한자를private
으로 설정하고static
인 정적 함수로getInstance
를 생성한다. 이제 해당 함수 내부에서는new
키워드를 사용해서AccountingDepartment
클래스를 인스턴스화 한다. 그전에 인스턴스화한 객체가 있는 존재 유무를 판단하는 검증을 위한 조건문을 작성해줘야한다.(이 과정이 마치 stack,DFS,BFS와 같은 알고리즘과 매우 흡사하다.) 이렇게 만들어진 정적 함수getInstance
를 사용하기 위해서는 이전처럼 new 키워드가 아닌 직접적 접근을 통해서const NewAccounting = AccountingDepartment.getInstance();
와 같이 작성하면 된다. 이 클래스를 다른 변수로 생성을 해서 log로 확인해보면 이전과 달리 동일한 결과 값이 나오고 이를 통해서singleton pattern
이 완성되어 하나의 데이터를 유지관리할 수 있음을 알 수 있다.📌Summary