It seems like all programming languages use commas (,) to separate function parameters.
Why don't they use just spaces instead?
|
It seems like all programming languages use commas (,) to separate function parameters. Why don't they use just spaces instead? |
|||||||||||||||||||
|
|
First of all, your premise is false. There are languages that use space as a separator (lisp, ML, haskell, possibly others). The reason that most languages don't is probably that a) |
|||||||||||||||
|
|
Absolutely not. What about this function call:
How would that look with a space instead of the comma?
Does that mean |
|||||||||||||||||||||
|
|
Lisp-like languages use: |
|||||||||||||||||||
|
|
Tcl uses space as a separator between words passed to commands. Where it has a composite argument, that has to be bracketed or otherwise quoted. Mind you, even there you will find the use of commas as separators – in expression syntax only – but that's because the notation is in common use outside of programming. Mathematics has written n-ary function applications that way for a very long time; computing (notably Fortran) just borrowed. |
|||
|
|
|
There's a number of historical reasons already pointed out. Also, it's because in most languages, where Also, I think it is clearer and easier to read. Why have whitespaces, which are invisible characters, and essentially serve nothing but the purpose of formatting, as really meaningful delimiters. It only introduces ambiguity. One example is that provided by Carl. A second would The creators of JavaScript had a very useful idea, similar to yours, which yields just the same problems. The idea was, that ENTER could also serve as
As a matter of fact, I sometimes tend to use the latter notation in languages, that do not have this 'feature'. JavaScript forces a way to format my code upon me, because someone had the cool idea, of using ENTER instead of I think, there is a number of good reasons why some languages are the way they are. Especially in dynamic languages (as PHP), where there's no compile time check, where the compiler could warn you, that the way it resolved an ambiguity as given above, doesn't match the signature of the call you want to make. You'd have a lot of weird runtime errors and a really hard life. There are languages, which allow this, but there's a number of reasons, why they do so. First and foremost, because a bunch of very clever people sat down and spent quite some time designing a language and then discovered, that its syntax makes the |
|||
|
|
You don't have to look further than most of our natural languages to see that comma is used for separation items in lists. So, using anything other than comma for enumerating parameters would be unexpected for anyone learning a programming language for the first time. |
|||
|
|
|
This is not true. Some languages don't use commas. Functions have been Maths concepts before programming constructs, so some languages keep the old notation. Than most of the newer has been inspired by C (Javascript, Java, C#, PHP too, they share some formal rules like comma). |
||||
|
|
|
This may sound a bit wise but I gather for the same reason why most earth-planet languages use it (english, french, and those few others ;-) Also, it is intuitive to most. |
|||||||
|
|
While some languages do use spaces, using a comma avoids ambiguous situations without the need for parentheses. A more interesting question might be why C uses the same character as a separator as is used for the "a then b" operator; the latter question is in some ways more interesting given that the C character set has at three other characters that do not appear in any context (dollar sign, commercial-at, and grave, and I know at least one of those (the dollar sign) dates back to the 40-character punchcard set. |
|||
|
|
In natural languages that include comma in their script, that character is used to separate things. For instance, if you where to enumerate fruits, you'd write: Hence, using comma to separate parameters in a function is more natural that using other character ( | for instance ) Consider:
vs. someFunction( name|age|location )
Thats possible. Lisp does it. The main reason is, space, is already used to separate tokens, and it's easier not to assign an extra functionality. |
|||
|
|
|
Haskell doesn't use spaces. Example
The reason for using commas in C/C++ is that reading a long argument list without a separator can be difficult without commas Try reading this
commas are useful like spaces are. In Latin nothing was written with spaces, periods, or lower case letters. Try reading this IAMTHEVERYMODELOFAWHATDOYOUWANTNOTHATSMYBUCKET it's primarily to help you read things. |
|||||||
|
|
I have programmed in quite a few languages and while the comma does not rule supreme it is certainly in front. The comma is good because it is a visible character so that script can be compressed by removing spaces without breaking things. If you have space then you can have tabs and that can be a pain in the ... There are issues with new-lines and spaces at the end of a line. Give me a comma any day, you can see it and you know what it does. Spaces are for readability (generally) and commas are part of syntax. Mind you there are plenty of exceptions where a space is required or de rigueur. I also like curly brackets. |
|||
|
|
|
It is probably tradition. If they used space they could not pass expression as param e.g.
would be very different from
|
|||||
|
|
Some languages, like Boo, allow you to specify the type of parameters or leave it out, like so:
Meaning: obj1 and obj2 can be of any type (inherited from object), where as title and count must be of type String and Int respectively. This would be hard to do using spaces as separators. |
|||||||
|