-
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/72: interface #47
Open
4BFC
wants to merge
55
commits into
UdemyTs
Choose a base branch
from
Udemy/Ts/section5/72
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에서 수정한 커밋입니다.
👀한줄 요약interface
abstract
|
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/72: interface
🔗Reference
🔥KeyWord
compilerrun timejsdocprop-types-ts(io-ts)📝Description
interface보다 정의 강행성이 있다. 즉, abstract는 청사진이기 때문에 모든 abstract의 전역변수, 함수들은 상속받은 자식들에게 필히 모든 요소들을 사용해야만 한다. 하지만 interface는 이와 달리 각 클래스가 어떻게 구현할지 상관하지 않을 때 사용된다. 그래서 강행성은 abstract처럼 있지는 않다. 정리하자면 abstract 클래스는 구현된 메서드와 구현되지 않은 메서드를 모두 가질 수 있지만, 인터페이스는 구현을 가질 수 없다. abstract 클래스는 상속을 통해 동작을 공유하며 다중 상속이 불가능하지만 interface는 다중 구현이 가능하다. 추상 클래스는 **상태(필드, 전역 변수, 함수)**를 가질 수 있지만 interface는 상태를 가질 수 없다. abstract 클래스는 클래스 간 상속 관계를 강제할 때 사용되며, interface는 구현의 구조를 강제하는 데 사용된다.jsdoc와 prop-types-ts(io-ts)와의 결합리액트와 prop-types-ts(io-ts) 그리고 ts와의 결합compiler와 run time의 차이📌Summary