vote up 0 vote down star

I have two string arrays "Array1[size]" and "Array2[size]". They both have the same size. I would like to write a function which contains this two arrays but I am having problems in the way that I am declaring them.

I am declaring it like this: void Thefunction (string& Array1[], string& Array2[], int size);

And when I call it I am calling it like this: Thefunction (Array1, Array2, size);

What I am doing wrong?

Thank you.

flag

what error does the compiler give you? – int3 Nov 5 at 20:32
2  
In addition to answers below: you should use void instead of Void. – Kirill V. Lyadvinsky Nov 5 at 20:35
Thank you, that was actually a typo when I wrote it in the question. But I wrote lowercase "void" in my source code. Thank you for pointing that out anyways, because I didn't know that lower case or upper case mattered. – jualin Nov 6 at 4:57
Everything matters in c++, even whitespaces std::vector<std::pair<int,int>> does not compile :/ – Matthieu M. Nov 6 at 7:18
@Matthieu M. - as of C++0x that is no longer a problem and most modern C++ compilers (g++ 4, visual studio 2005) compile it just fine. – Aaron Nov 6 at 19:29

3 Answers

vote up 11 vote down check

You're declaring a function which takes arrays of string references. You almost certainly want to take arrays of strings.

Like this:

void TheFunction(string Array1[], string Array2[], int size);
link|flag
2  
BTW, arrays of references are prohibited by Standard somewhere in Chapter 8. – Kirill V. Lyadvinsky Nov 5 at 20:40
Thank you very much! – jualin Nov 6 at 4:55
If you want to pass the array by value (decayed into a pointer to the first element) this will be one solution, but still, using pointer syntax as in Will's solution will be clearer: stackoverflow.com/questions/1683367/… . If on the other hand you want to pass the array by reference (and there you can omit the size parameter) then follow fnieto's solution: stackoverflow.com/questions/1683367/… – dribeas Nov 6 at 10:16
vote up 4 vote down
void TheFunction(string* Array1,string* Array2,int size) { ... }

Arrays decay into pointers automatically.

link|flag
In truth, arrays are pointers (and visa versa). The only difference occurrs at declaration, and function parameters aren't declarations. – T.E.D. Nov 5 at 20:44
2  
@T.E.D: arrays are not pointers! When you pass an array, the function receives a pointer. The difference being in the result of the sizeof() operator. – Clifford Nov 5 at 20:48
@Clifford: Not only the result of the typeof() is different, but the type itself is different. This means that the template type deductions will be different. – dribeas Nov 6 at 10:42
vote up 2 vote down

You can do:

template <std::size_t size>
void TheFunction(string (&Array1)[size], string (&Array2)[size]);
link|flag
+1, this is the only safe solution as the compiler will warrant that the passed in array is of the appropriate size. On the other hand it will not work for dynamically allocated memory. – dribeas Nov 6 at 10:46

Your Answer

Get an OpenID
or

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