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'm quite new to C++, and couldn't find the answer to this thing:

I have an array of pointers, each cell is a another pointer to an object of type Tenant. I would like to get a "Tenant" and add it to my array.

void addTenant(const Tenant& tnt)
{
  tenantArray[size] = tnt;
}

What am I doing wrong?

share|improve this question
2  
What are you doing wrong? Having a array of pointers is a start, I'd say. Why not have a vector of objects instead? – Kerrek SB Dec 15 '12 at 19:45
For starters, pointers contain an address. We have no idea whether tenantArray[size] is right until we see more code either. – chris Dec 15 '12 at 19:45
4  
Use a vector instead and add it using the push_back method. The array you have is fixed in size you cannot add Tenants using the [] operator. – Borgleader Dec 15 '12 at 19:45
-1 post a complete example (copy and paste the code, don't type it), cite the compiler and system, cite the error message, show the location of the error, don't rely an readers being telepathic or very good at guessing and stop wasting people's time – Cheers and hth. - Alf Dec 15 '12 at 19:49

closed as not a real question by claptrap, Bo Persson, Soner Gönül, Neolisk, DavidO Dec 16 '12 at 4:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

If you are using C-style array, you can't dynamically change it's size. If you are using vector, you can use .push_back() method to add new elements. Why are you using pointers, though? Is there any specific reason for that?

If you want to obtain address from reference, you can use & operator:

tenants.push_back(&tnt);
share|improve this answer

Would

tenantArray[size] = &tnt;

do? Also remember that you need array of pointers to const as you are passing in const reference. Or just drop const from function parameter.

share|improve this answer
1  
You can't add elements to C++ structures by operator[] (map being only exception). – Bartek Banachewicz Dec 15 '12 at 19:54
@Bartek: And how did you find out we are talking about structure here? Any declaration? Definition? Or maybe just guess? If guess - it is as good as mine that we are talking array here. – Tomek Dec 16 '12 at 22:27
By structure I meant standard library container. Sorry if that misguided you. – Bartek Banachewicz Dec 17 '12 at 8:28

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