What is a char*, exactly? Is it a pointer? I thought pointers had the asterisk before the identifier, not the type (which isn't necessarily the same thing)...?
|
It is a pointer to a When declaring a pointer, the asterisk goes after the type and before the identifier, with whitespace being insignificant. These all declare
To make things even more confusing, when declaring multiple variables at once, the asterisk only applies to a single identifier (on its right). E.g.:
It is primarily for this reason that the asterisk is conventionally placed immediately adjacent to the identifier and not the type, as it avoids this confusing declaration. |
|||||||||||||
|
|
It is a pointer to a character. You can write either
or
It is the same. Now, in C, a pointer to a char was used for strings: The first character of the string would be where the pointer points to, the next character in the address that comes next, etc. etc. until the Null-Terminal-Symbol BUT: There is no need to do this in C++ anymore. Use std::string (or similar classes) instead. The char* stuff has been named the single most frequent source for security bugs! |
|||
|
http://cplusplus.com/doc/tutorial/pointers/ The |
|||
|
|
|
Whitespace doesn't normally matter, so
are all the same. |
||||
|
|
char *foo;is the same aschar* foo;– Paul Tomblin Nov 27 '10 at 20:17char apple;andcharapple;are quite different. – Mooing Duck Jan 17 '12 at 17:47