#include <cstring>
int main()
{
char *pName = new char[10];
char dummy[] = "dummy";
strcpy(pName + 0,dummy);//how this is different from -->this works
strcpy(pName[0],dummy);//this one...--> error C2664: 'strcpy' :
//cannot convert parameter 1
//from 'char' to 'char *'
}
|
|
|
||||
|
|
|
The reason you are getting your error is because strcpy expects a pointer to a char (char*), and not a char value (which is what pName[0] is) |
||||||||||||||||||
|
|
|
When dealing with pointers and arrays in C or C++ it really helps to recognize them as very distinct constructs (I think one of the best books that explains this distinction is a book called "Deep C Secrets" if i remember correctly). What muddies the waters is the fact that there is a one way silent conversion allowed from array-names to pointers (an inconsistency in the language's handling of variable names) - but it is very important not to interpret the existence of this decay phenomenon as implying equivalence. To help us reason about this, let us introduce the idea of a 'memory cell'. We model a 'memory cell' as having two attributes:
We can then model a simple C++ variable as having two attributes (we do not need types at this low level of abstraction):
Like most models, it has some deficiencies (does not deal with an array with more than one element, but it is sufficient for our purposes). So for example:
Now here's the main difference between an array variable and a non-array (pointer) C++ variable:
Here are some examples to help clarify the implications (refer to the above variables):
This in no way should imply that an array variable is the same as a pointer variable. So for e.g. do not do this:
// myproj_file1.cpp
int array[100] = { 0 }; // here 'array' evaluates to the *address* of the first memory cell
// myproj_file2.cpp
extern int* array; // here 'array' evaluates to the *value* of the first memory cell
// Assuming the linker links the two
// what it does if you read the assembly, is something like this:
// extern int* array = (int*) array[0];
// but it doesn't have to, it can do anything, since the behavior is undefined
I hope this helps. If you still feel that further clarification might help, please ask a followup question, and don't hesitate to get a copy (library?) of that "Deep C Secrets" book :) -- |
|||
|
|
|
pName is pointer to newly allocated memory. dummy is also an array/pointer. pName is pointer and pointing to base address, even you add (pName + 0) is still pointing to same memory location, becuase your only adding 0. strcpy use pointer variable, and your passing value in first argument, therefore your are getting error |
||
|
|
|
|
An array is simply a pointer automatically (usually) assigned to an automatically allocated block of memory. Taking your example, you can declare dummy equally as:
And you can then use either array syntax or pointer syntax to access the data:
Both
Given the second form, |
||
|
|
|
|
Technically, This is because The compiler can then turn |
|||
|
|
|
|
There is no difference. They will both crash since you've not allocated any space for pName. :)[EDIT: No longer a crash - question has been edited] The main difference is a stylistic one, frequently influenced by which fits the way the surrounding code is written - mostly array access or mostly pointer access. (EDIT: assuming you really meant &pName[0] as Brian Bondy pointed out.) |
|||
|
|
