c++ - Is it recommended to give variable names in a function declaration? -
as understand it, in function declaration there no need give variable names, still recommended.
for example: setcur() function accepts 2 parameters : row number , , column number.hence can declared follows:
void setcur(int, int); void setcur(int row, int col);
why recommended give variable names in function declaration?
it more readability sake. need variable type in function declaration; however, reading code understand these inputs are, assuming name them appropriate.
it make life lot easier if working on large file , don't remember function in .h file takes in input.
Comments
Post a Comment