I declare the following array:
char* array [2] = { "One", "Two"};
I pass this array to a function. How can I find the length of this array in the function?
|
You can't find the length of an array after you pass it to a function without extra effort. You'll need to:
1 In case you were wondering, most people regret the fact that C strings work this way. |
|||||||||||
|
|
When you pass an array there is NOT an easy way to determine the size within the function. You can either pass the array size as a parameter or use std::vector<std::string> If you are feeling particularly adventurous you can use some advanced template techniques In a nutshell it looks something like
|
|||||||||
|
|
C is doing some trickery behind your back.
Both of these are identical:
As a result, you don't know, inside
Some people like to write their functions like: Regardless of which way you like to do it, if you want to know how long your array is, you've got a few options:
|
|||||
|
|
Getting the array-size from the pointer isn't possible. You could just terminate the array with a NULL-pointer. That way your function can search for the NULL-pointer to know the size, or simply just stop processing input once it hits the NULL... |
|||
|
|
|
If you mean how long are all the strings added togather.
Added:
Probably going to get a bad response for this, but you could always use the first pointer to store the size, as long as you don't deference it or mistake it for actually being a pointer.
Or you could NULL terminate your array char* array [] = { "One", "Two", (char*)0 };
|
||||
|
|
|
Use the new C++11 std::array |
|||
|
|
Iinstead ofiwill probably help avoid the "is this a reasonable question" heuristic (in addition to making the question easier to read for native English speakers). – sarnold Nov 8 '11 at 2:20