vote up 10 vote down star

Why are semicolons necessary at the end of each line in C#? Why can't the complier just know where each line is ended?

flag

80% accept rate
I like to see downvotes instead of closing this question. why the hell are people closing every question they don't like now? Why not just vote it down?!?! – TheSoftwareJedi Mar 7 at 15:02
TSJ: I, for one, changed my opionion (I first voted to close it as “subjective and argumentative”) but SO doesn't allow me to recant. For what it's worth, I now think this is a valid question and I actually upvoted it. – Konrad Rudolph Mar 7 at 15:06
i don't undersatdn why people are downvoting this question. – moogs Mar 7 at 15:10
I think the tone of the question had a very "Why is C# so stupid" tone to it. I tried to edit into a better question. – Dana Mar 7 at 15:10
The extremely argumentative tone of the original question caused me to vote to close. After Dana's edits and some thoughtful answers, I too have changed my mind. If it gets close I'll vote to reopen. – Bill the Lizard Mar 7 at 15:12
show 3 more comments

12 Answers

vote up 28 vote down check

The line terminator character will make you be able to break a statement across multiple lines.

On the other hand, languages like VB have a line continuation character. I personally think it's much cleaner to terminate statements with a semicolon rather than continue using underscores.

link|flag
It could be worse. In FORTRAN, the continuation character had to be in a particular column. – Paul Tomblin Mar 7 at 15:09
Oh really?! Dammit! – Mehrdad Afshari Mar 7 at 15:10
2  
How often do you continue really long statements across multiple lines? Requiring a semicolon or other character to terminate a line is optimizing for a much rarer case. Using a line continuation makes much more sense. – Chris Upchurch Mar 7 at 15:11
It's not just about how often. Actually, in modern LINQ days, I do it many times. However, it's really hard reformat the code. Forgetting continuation character is very common. Inserting a semicolon is a completely non-issue (just like pressing enter at the end of line). – Mehrdad Afshari Mar 7 at 15:12
1  
@Mehrdad, I found it interesting recently to note that of the 5 purely managed languages MS works on, only 1 is a curly brace language and semicolon (C# vs F#,VB.Net,IronPython and IronRuby) – JaredPar Mar 7 at 15:58
show 13 more comments
vote up 2 vote down

So that whitespace isn't significant except inside identifiers and keywords and such.

link|flag
As far as I've ever heard, this is the only really correct answer, though I'm sure there were also compute power and other considerations in the beginning. I'm surprised it didn't get more upvotes, but even "history of mostly dead languages" CS prof didn't get this. – Andrew Jun 17 at 0:22
vote up 6 vote down

How many commands is this?

int x = 4
+somefunc(5)

Semicolons are needed to eliminate ambiguity.

link|flag
1  
There is no ambiguity. One language may use semicolon characters to separate statements while another uses newline characters. Where is the ambiguity? – dangph Mar 7 at 15:09
The ambiguity is in a semi-colon-less C#, which is the language we are talking about. The excerpt could be one command or 2. – recursive Mar 7 at 15:12
Okay, I see what you mean. If the question is, "Why can't we make semicolons optional in C#", then you are right. It would be impossible. But there is no technical reason why C# couldn't have been designed to be line-based, so long as it was defined that way from the start. – dangph Mar 7 at 15:18
vote up 9 vote down

No, the compiler doesn't know that a line break is for statement termination, nor should it. It allows you to carry a statement to multilines if you like.

See:

string sql = @"SELECT foo
               FROM bar
               WHERE baz=42";

Or how about large method overloads:

CallMyMethod(thisIsSomethingForArgument1,
             thisIsSomethingForArgument2,
             thisIsSomethingForArgument2,
             thisIsSomethingForArgument3,
             thisIsSomethingForArgument4,
             thisIsSomethingForArgument5,
             thisIsSomethingForArgument6);

And the reverse, the semi-colon also allows multi-statement lines:

string s = ""; int i = 0;
link|flag
yet it does know: there's an unterminated string literal. – Iraimbilanja Mar 7 at 14:58
"The semi-colon also allows multiline statements:". True but your example is a multi-statement line. – Logan Capaldo Mar 7 at 15:00
@Logan Capaldo you're right. fixed! – TheSoftwareJedi Mar 7 at 15:01
1  
There's absolutely no reason to allow multiple statements in one line. And your other two examples are exceptionally poor since they do NOT require statement termination in languages such as Python. – Konrad Rudolph Mar 7 at 15:04
All of your examples could be unambiguously handled without statement terminators. – recursive Mar 7 at 15:07
show 1 more comment
vote up 3 vote down

Strictly speaking, this is true: if a human could figure out where a statement ends, so can the compiler. This hasn't really caught on yet, and few languages implement anything of that kind. The next version of VB will probably be the first language to implement a proper handling of statements that require neither explicit termination nor line continuation [source]. This would allow code like this:

Dim a = OneVeryLongExpression +
        AnotherLongExpression
Dim b = 2 * a

Let's keep our fingers crossed.

On the other hand, this does make parsing much harder and can potentially result in poor error messages (see Haskell).

That said, the reason for C# to use a C-like syntax was probably due to marketing reasons more than anything else: people are already familiar with languages like C, C++ and Java. No need to introduce yet another syntax. This makes sense for a variety of reasons but it obviously inherits a lot of weaknesses from these languages.

link|flag
Python already does this. – recursive Mar 7 at 15:08
recursive: Python allows this only in a few restricted situations -- VB will allow it basically everwhere if the resulting code is unambiguous. Haskell does this, too. – Konrad Rudolph Mar 7 at 15:14
This is not true, even one of the comments showed that. Until the compiler can read my mind it can't always be certain what I meant unless I follow at least a few basic rules. – Andrew Jun 17 at 0:21
Andrew: I never said there needn't be any rules. Of course you need still rules but the don't have to be as rigid as C#'s rules. – Konrad Rudolph Jun 17 at 10:08
vote up 4 vote down

I personally agree with having a distinct character as a line terminator. It makes it much easier for the compiler to figure out what you are trying to do.

And contrary to popular belief it is not possible 100% of the time to for the compiler to figure out where one statement end and another begins without assistance! There are edge cases where it is ambiguous whether it is a single statement or multiple statements spanning several lines.

Read this article from Paul Vick, the technical lead of Visual Basic to see why its not as easy as it sounds.

link|flag
vote up -2 vote down

It's not for compiler, it's for us. It's called code readability.

link|flag
1  
How does this serve to make code more readable? I see absolutely no readability benefit. – Konrad Rudolph Mar 7 at 15:20
what do you think about recursive's answer ? – Canavar Mar 7 at 15:21
I think it should be invalid code, even in a language without explicit statement delimiter, because the first line could form a complete, valid statement. The parser should be lazy here and not regard the second line. – Konrad Rudolph Mar 7 at 19:59
There is no doubt that some statements should span several lines. Using newlines to separate statements forces the reader to ask himself (or itself) whether a newline encountered really does end a statement or not. Not having to think about (local) ambiguities enhances readability. – Svante Mar 7 at 23:18
vote up 1 vote down

I've been mulling this question a bit and if I may take a guess at the motivations of the language designers:

C# obviously has semicolons because of its heritage from C. I've been rereading the K&R book lately and it's pretty obvious that Dennis Ritchie really didn't want to force programmers to code the way he thought was best. The book is rife with comments like, "Although we are not dogmatic about the matter, it does seem that goto statements should be used rarely, if at all" and in the section on functions they mention that they chose one of many format styles, it doesn't matter which one you pick, just be consistent.

So the use of an explicit statement terminator allows the programmer to format their code however they like. For better or worse, it seems consistent with how C was originally designed: do it your way.

link|flag
vote up 0 vote down

You could accurately argue that requiring a semicolon to terminate a statement is superfluous. It is technically possible to remove the semicolon from the C# language and still have it work. The problem is that it leaves room for misinterpretation by humans. I would argue that the necessity of semicolons is the disambiguation for the sake of humans, not the compiler. Without some form of statement delimitation, it is much harder for humans to interpret consise staements such as this:

int i = someFlag ? 12 : 5 int j = i + 3

The compiler should be able to handle this just fine, but to a human the below looks much better

int i = someFlag ? 12 : 5; int j = i + 3;
link|flag
vote up 1 vote down

It can be done. What you refer to is called "semicolon insertion". JavaScript does it with much success, the reason why it is not applied in C# is up to its designers. Maybe they did not know about it, or feared it might cause confusion among programmers.

For more details in semicolon insertion in JavaScript, please refer to the ECMA-script standard 262 where JavaScript is specified.

I quote from page 22 (in the PDF, page 34):

  • When, as the program is parsed from left to right, the end of the input stream of tokens is encountered and the parser is unable to parse the input token stream as a single complete ECMA Script Program, then a semicolon isa utomatically inserted at the end of the input stream.

  • When, as the program is parsed from left to right, a token is encountered that is allowed by some production of the grammar, but the production is a restricted production and the token would be the first token for a terminal or nonterminal immediately following the annotation “[no LineTerminator here]” with in the restricted production (and there fore such a token is called a restricted token), and the restricted token is separated fromt he previous token by at least one LineTerminator, then a semicolon is automatically inserted before the restricted token.

However, there is an additional overriding condition on the preceding rules: a semicolon is never inserted automatically if the semicolon would then be parsed as an empty statement or if that semicolon would become one of the two semicolons in the header of a for statement (section 12.6.3).

[...]

The specification document even contains examples!

link|flag
Of course, if you want your javascript to minify safely, you're probably already using semicolons everywhere in javascript that you would in C#. – Joel Mueller Apr 6 at 21:25
>>>JavaScript does it with much success; I beg to differ, Javascript is quite lousy at semicolon insertion. See: youtube.com/watch?v=hQVTIJBZook – Gary Willoughby Apr 6 at 21:45
vote up 0 vote down

I would say that the biggest reason that semicolons are necessary after each statement is familiarity for programmers already familiar with C, C++, and/or Java. C# inherits many syntactical choices from those languages and is not simply named similarly to them. Semicolon-terminated statements is just one of the many syntax choices borrowed from those languages.

link|flag
vote up 0 vote down

Another good reason for semicolons is to isolate syntax errors. When syntax errors occur the semicolons allow the compiler to get back on track so that something like

a = b + c = d

can be disambiguated between

a = b + c; = d

with the error in the second statement or

a = b + ; c = d

with the error in the first statement. Without the semicolons, it can be impossible to say where a statement ends in the presence of a syntax error. A missing parenthesis might mean that the entire latter half of your program may be considered one giant syntax error rather than being syntax checked line by line.

It also helps the other way - if you meant to write

a = b; c = d;

but typoed and left out the "c" then without semis it would look like

a = b = d

which is valid and you'd have a running program with a bad and difficult to locate bug so semicolons can often help catch errors that otherwise would look like valid syntax. Also, I agree with everybody on readability. I don't like working in languages without some sort of statement terminator for that reason.

link|flag

Your Answer

Get an OpenID
or

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