问题
This is a continuation of another question I have.
Consider the following code:
char *hi = "hello";
char *array1[3] = 
{
    hi,
    "world",
    "there."
};
It doesn't compile to my surprise (apparently I don't know C syntax as well as I thought) and generates the following error:
  error: initializer element is not constant
If I change the char* into char[] it compiles fine:
char hi[] = "hello";
char *array1[3] = 
{
    hi,
    "world",
    "there."
};
Can somebody explain to me why?
回答1:
In the first example (char *hi = "hello";), you are creating a non-const pointer which is initialized to point to the static const string "hello".  This pointer could, in theory, point at anything you like.
In the second example (char hi[] = "hello";) you are specifically defining an array, not a pointer, so the address it references is non-modifiable.  Note that an array can be thought of as a non-modifiable pointer to a specific block of memory.
Your first example actually compiles without issue in C++ (my compiler, at least).
来源:https://stackoverflow.com/questions/7834643/string-array-initialisation