|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
2 | Clarification of intent | ||
Use vector and string instead of C-style arrays and char *Use std::vector whenever you need to create a buffer of data, even if the size is fixed. Use std::string whenever you need to have a string. How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.? std::vector: The user of the a vector can always ask for find its size, and increase it the vector can be resized if necessaryneeded. Use std::string whenever you need It can even be given (through the (&(myVector[0])) notation) to have a string: A C API. Of course, the vector will clean after itself. std::stringcannot : Almost the same reasons above.And the fact it will always be correctly initialized, that it can't be overrun, and cannot leakthat it will handle modifications gracefully, whereas a char * can be NULLlike concatenations, can be overrun assignation, etc, and in a lot natural way (using operators instead of other very interesting surprises.functions) |
||||
|
1 |
|
||
Use vector and string instead of C-style arrays and char *Use std::vector whenever you need to create a buffer of data, even if the size is fixed: The user of the vector can always ask for its size, and increase it if necessary. Use std::string whenever you need to have a string: A std::string cannot be overrun, and cannot leak, whereas a char * can be NULL, can be overrun and a lot of other very interesting surprises. |
||||
