인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

jinsw712320927's profile image
jinsw712320927

asked

[MMORPG Game Development with C++ and Unreal Engine Series] Part 3: Data Structures and Algorithms

Linked List Implementation Practice

Node클래스 멤버변수 질문있습니다.

Written on

·

199

0

좋은 강의 감사합니다.

강의 8분10초대에 Node 클래스의 멤버변수에서 _prev와 _next의 자료형이 Node<T>* 가 아닌 Node*인 이유가 궁금합니다. 

 

 

기술면접

Answer 1

1

rookiss님의 프로필 이미지
rookiss
Instructor

template <T>
Node 클래스 안에서 Node를 사용하면 그게 그거입니다.

jinsw712320927's profile image
jinsw712320927

asked

Ask a question