Vector

Started by
4 comments, last by The C modest god 19 years, 11 months ago
How can I find which header file the vector class belongs to?
It's all about the wheel.Never blindly trust technoligy.I love my internal organs.Real men don't shower.Quote:Original post by Toolmaker Quote:Original post by The C modest godHow is my improoved signature?It sucks, just like you.
Advertisement
#include<vector>std::vector<int> eg;
Most of the time, you can check something like MSDN if you want to know what headers or libraries are needed for a paticular class or function.
quote:Original post by Programmer One
Most of the time, you can check something like MSDN if you want to know what headers or libraries are needed for a paticular class or function.

I checked msdn, and I couldnt find which header the class belongs to.
They dont mention that in msdn

It's all about the wheel.Never blindly trust technoligy.I love my internal organs.Real men don't shower.Quote:Original post by Toolmaker Quote:Original post by The C modest godHow is my improoved signature?It sucks, just like you.
google
3rd result

learn to use google
quote:Original post by The C modest god

I checked msdn, and I couldnt find which header the class belongs to.
They dont mention that in msdn




<a href = "http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcstdlib/html/vclrfvectorclass.asp">Yes they do</a>

Bottom of the page:
quote:
Requirements
Header: <vector>


This topic is closed to new replies.

Advertisement