Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的に、基本クラス「base」と、テンプレートである派生クラス「派生」があります。
class base { ... }; template<typename T> class derived : base { ... };
また、しばしば static_cast を使用して派生型にキャストする必要があります。返されたポインターをベース (void*?) に格納できるので、後でキャストを再解釈するだけで済みますか?