Apparently, we can pass complex class instances to functions, but why can't we pass arrays to functions?
|
The origin is historical. The problem is that the rule "arrays decay into pointers, when passed to a function" is simple. Copying arrays would be kind of complicated and not very clear, since the behavior would change for different parameters and different function declarations. Note that you can still do an indirect pass by value:
|
|||||||||||||
|
|
Here's another perspective: There isn't a single type "array" in C. Rather, In C there's no function overloading, and so the only sensible thing you could have allowed would be a function that takes (or returns) a single type of array:
Presumably, that was just considered far less useful than the actual decision to make all arrays decay into a pointer to the first element and require the user to communicate the size by other means. After all, the above could be rewritten as:
So there's no loss of expressive power, but a huge gain in generality. Note that this isn't any different in C++, but template-driven code generation allows you to write a templated function As an extreme case, imagine that you would need two functions |
|||||||
|
|
The reason you can't pass an array by value is because there is no specific way to track an array's size such that the function invocation logic would know how much memory to allocate and what to copy. You can pass a class instance because classes have constructors. Arrays do not. |
|||||||
|
|
You are passing by value: the value of the pointer to the array. Remember that using square bracket notation in C is simply shorthand for de-referencing a pointer. ptr[2] means *(ptr+2). Dropping the brackets gets you a pointer to the array, which can be passed by value to a function:
See the list of types in the ANSI C spec. Arrays are not primitive types, but constructed from a combination of pointers and operators. (It won't let me put another link, but the construction is described under "Array type derivation".) |
|||||||||||
|
|
The equivalent of that would be to first make a copy of the array and then pass it to the function (which can be highly inefficient for large arrays). Other than that I would say it's for historical reasons, i.e. one could not pass arrays by value in C. My guess is that the reasoning behind NOT introducing passing arrays by value in C++ was that objects were thought to be moderately sized compared to arrays. As pointed out by delnan, when using |
||||
|
|
std::vectororstd::array) carried over into C++ pretty much unchanged, I suspect that the reason is the same. – delnan Sep 17 '11 at 13:11