I've had quite a bit of trouble trying to write a function that checks if a string is a number. For a game I am writing I just need to check if a line from the file I am reading is a number or not (I will know if it is a parameter this way). I wrote the below function which I believe was working smoothly (or I accidentally edited to stop it or I'm schizophrenic or Windows is schizophrenic):
bool isParam(string line) {
if(isdigit(atoi(line.c_str()))) return true;
return false;
}


if (expr) return true; return false;! Just writereturn expr;. – ephemient Jan 11 '11 at 6:08if (expr) return expr; else return expr;,if (expr == true),(if expr != false), orif ((expr == true) == true). They all introduce complexity that does not benefit the writer, reader, or compiler of the code. The elimination of needless complexity is not a shortcut; it's key to writing better software. – MSalters Jan 11 '11 at 8:24