Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a vector of pair like such:

vector<pair<string,double>> revenue;

It has nothing it it but I want to add a string normally and a double from a map like so:

revenue[i].first="string";
revenue[i].second=map[i].second;

But since revenue isn't initialized, it comes up with an out of bounds error. So I tried doing vector::push_back like so:

revenue.push_back("string",map[i].second);

But that says cannot take two arguments. So how can I add to this vector of pair?

share|improve this question
So you don't have a vector pair but a pair vector, or vector of pairs. Once you understand this, you have solved your problem. – Christian Rau Oct 26 '11 at 1:06

3 Answers

up vote 14 down vote accepted

Use std::make_pair:

revenue.push_back(std::make_pair("string",map[i].second));
share|improve this answer
revenue.pushback("string",map[i].second);

But that says cannot take two arguments. So how can I add to this vector pair?

You're on the right path, but think about it; what does your vector hold? It certainly doesn't hold a string and an int in one position, it holds a Pair. So...

revenue.push_back( std::make_pair( "string", map[i].second ) );     
share|improve this answer

Read the following documentation:

http://cplusplus.com/reference/std/utility/make_pair/

I think that will help. The whole site is a good resource for C++.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.