Comment Re:Command and source/test review. (Score 1) 1270
std::string makes programming more convienent to write, but is not faster than an old-fashioned pointer to char. Normally direct manipulations of (char * ) are faster, but more diffucult to handle (memory leaks, allocation, free etc. pp.).
Perhaps anyone can correct my: But so far I know the most std::string impementations use in the background the still (char *).
Perhaps anyone can correct my: But so far I know the most std::string impementations use in the background the still (char *).