hi friends
Many functions in c take pointer to constant strings/chars as parameters eg void foo(const char *ptr) . However I wish to change the string pointed by it (ptr).how to do it in c
|
|
|||
|
|
|
If you do it like this:
Then the pointer that you send into the function will be changed despite being a const pointer, the other suggestions so far only let you change the contents of the string, not the pointer to the string. And I agree with the others that you shouldn't, ever, "un-const" any parameter you get, since the callee may really depend on that there are no side-effects to the function regarding those parameters. There is also this way to get rid of the warnings/errors
As you see it is quite possible and popular to actually do this, but you have to know what you are doing or mysterious faults may appear. |
|||
|
|
|
|
Because
But, if In short: don't lie to your compiler How to lie to the compiler Cast the
|
||
|
|
|
|
The whole reason the const is so to express that the underlying content is not to be modified by this function, so don't change it because that will most likely break some code which is relying on the constness. other then that you can always cast the constness away using either |
||
|
|
You can just cast away the
Note that this is dangerous, consider cases where the data being passed to the function really can't be changed. For instance, |
||
|
|
|
|
by notation "const char *ptr" we are telling Compiler that ptr contains should not be changed. Just, we can't change it! |
||
|
|
|
|
You can copy it to another piece of memory, and modify it there. If you cast it to non-const, and then modify, chances are good you'll just segfault. |
||
|
|
|
|
Don't do it as it will cause your code to behave unpredictably. Basically the string pointed by const char* may be stored in the read-only section of your program's data and if you try to write something there, bad things will happen. Remember that foo can be called as |
||
|
|