Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is your ideal calling convention for methods? If you could just throw away everything you don't like about your current language(s) and start over, how would you do it?

share|improve this question
1  
Community Wiki? – CookieOfFortune Jun 17 '09 at 21:09
What's the point? The initial "answer" is all bad things. There's no "good thing". – S.Lott Jun 17 '09 at 21:12
Because not everyone agrees what the bad things are. – Jonathan Allen Jun 17 '09 at 21:13

closed as not constructive by Jon B, Reed Copsey, GEOCHET, Aiden Bell, ChrisW Jun 17 '09 at 21:15

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

This is the list of stuff I consider to be bad about the ones I'm using.

  • Hard to distinguish between function names and arguments (Lisp, F#)
  • Having to count arguments/parameters to figure out which map to which (C#, Java)
  • Having to specify types on generic calls when they should be inferable (VB, C#)
  • Having to explicitly cast when an implicit cast would be obviously safe (F#)
  • Not supporting a variable numbers of parameters
  • Not supporting optional parameters (C#, Java)
  • Not supporting overloads (VB 6)
  • Not supporting lists of tuples (VB, C#, Java)
  • Fields and properties are accessed differently (Java)
  • Array syntax is special cased for built-in types (Java)
  • Arrays are accessed differently (C#)
  • Default Properties (VB 6)
  • Methods not needing parameters require an empty parameter list (Java, C#)
  • Calling functions and calling methods look different (F#)
  • Calling functions that return values are different from ones that don’t (VB 6)
share|improve this answer
A calling convention is what describes how arguments are passed from a caller to a receiver and how they are cleaned up once the call is finished. Your answer doesn't talk about that, though; it's just a simple list of gripes with no real theme. – Rob Kennedy Jun 17 '09 at 21:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.