protocol generic
-
associatedTypeSwift 2020. 3. 18. 16:52
오늘은 associatedType 에 대해 알아보겠습니다! associatedType을 이해하기 위해서는 Protocol 과 Generic 에 대해 먼저 이해하고 계셔야합니다. 왜냐하면 associatedType 은 Protocol을 위한 Generic 이라고 생각하시면 되기 때문이죠. 🙃 정의 공식 문서에서는 다음과 같이 설명하고 있어요. An associated type gives a placeholder name to a type that is used as part of the protocol. The actual type to use for that associated type isn’t specified until the protocol is adopted. associated type 은 p..