I was just wondering because if you type #include <map>, you’re including the map template.
I was just wondering because if you type #include <map> , you’re including the
Share
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.
The angle brackets (
< >) just tell the compiler how it should look for the file (as opposed to quotes" "). The contents of that file is irrelevant, it can contain whatever.The angle brackets in
#include <map>andtemplate <...> maphave no correlation whatsoever. The syntax just uses the same characters for completely different purposes.