Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> When there are 3-4 parameters it is too much trouble to write the names.

Sorry, I don't agree.

First, code is read far more often than written. The few seconds it takes to type out the arguments are paid again and again each time you have to read it.

Second, this is one of the few things that autocomplete is really good at.

Third, almost everybody configures their IDE to display the names anyway. So, you might as well put them into the source code so people reading the code without an IDE gain the benefit, too.

Finally, yes, they are redundant. That's the point. If the upstream changes something and renames the argument without changing the type I probably want to review it anyway.



They aren't even necessarily redundant. If you have argument names as part of the function name, they can be overloaded on - and this is much more readable than type-based overloading because it's all explicit. Swift uses this to great effect, e.g. here are some different ways to construct a string:

   String(repeating: "foo", count: 42);

   String(cString: zeroTerminatedBuffer); 

   String(42, radix: 16);

   String(contentsOfFile: "foo.txt", encoding: .utf8);


Oooh. Nice. I forgot about the Smalltalk / ObjC / Swift usage of keywords for messages.


Making something longer doesn’t make it easier to read, especially in repetition.


Making something explicit does.


Would it be better if you wrote out the type of every variable every time you used it? That would be more explicit.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: