"template"및 "typename"키워드를 어디에, 왜 넣어야합니까? 템플릿에서, 어디서, 왜 넣어해야합니까 typename및 template의존 이름을? 어쨌든 종속 이름은 정확히 무엇입니까? 다음 코드가 있습니다. template // Tail will be a UnionNode too. struct UnionNode : public Tail { // ... template struct inUnion { // Q: where to add typename/template here? typedef Tail::inUnion dummy; }; template struct inUnion { }; }; template // For the last node Tn. struct UnionNode { //..