is it possible in C++ to create an alias of template class (without specifying parameters)?
typedef std::map myOwnMap;
doesn’t work.
And if not, is there any good reason?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In C++98 and C++03
typedefmay only be used on a complete type:With C++0x there is a new shiny syntax to replace
typedef:which also supports
templatealiasing:Here you go 🙂