Forgot your password?
typodupeerror

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 *).

Slashdot Top Deals

A method of solution is perfect if we can forsee from the start, and even prove, that following that method we shall attain our aim. -- Leibnitz

Working...