Linked by Thom Holwerda on Tue 15th Jan 2013 21:24 UTC
Thread beginning with comment 548993
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
I use both punctuation (C) and verbose (ADA) languages and tolerate both well.
With ADA (83) we always had a "BEGIN" and an "END xxxx;" for all constructs, save possibly the "REPEAT... UNTIL ...", though it's been a good 20 years since I did any ADA and I don't remember it well. Same with Pascal (Object Pascal; Delphi.) With VB you don't. You get this:
If X Is Nothing Then
Something
Somethingelse
Elseif Blah = "Give up" Then
Somemore
Else
ShootYourself(DateTime.Now)
End If
Compare that to the C#
if (X == Null)
{
Something();
Somethingelse();
}
else if (Blah == "Give up")
{
Somemore();
}
else
{
ShootYourself(DateTime.Now);
}
Or Pascal
if (X <> Nil) Then //Or is it "X is nil"? I forget
begin
Something();
Somethingelse();
end
else if (Blah = 'Give up') Then
begin
Somemore();
end
else
begin
ShootYourself(DateTime.Now);
end;
The beauty Pascal is that the entire If is one statement with compounds, the beauty of the C# is that it is not (really.) Both have advantages.
EDIT: remembering to add the actual point: The blocks make it easy to see what belongs where, where as with VB and other non block delimited languages, it's all about context.
The solution is a syntax colouring editor with very different colours for keywords and plain identifiers (not black and dark blue...)
The begin/end stuff becomes colorful patches surrounding black code.
The begin/end stuff becomes colorful patches surrounding black code.
Yeah, that's kind of okay. But again, when the code spans 3 or 4 screens (bad coding practice, horrible to maintain) it's more about refactoring to a sane state initially. Syntax highlighting has come a long way. The first editor I used on a daily basis was Delphi 1 and the syntax highlighting was very simple and the code insight did not exist. You had to actually know what to type - a skill lost by many recent CS graduates.
Edited 2013-01-16 12:35 UTC
Compare that to the C#...
That's badly formatted C#
I prefer the following:
if (X == Null) {
Something();
Somethingelse();
} else if (Blah == "Give up") {
Somemore();
} else {
ShootYourself(DateTime.Now);
}
In my opinion that is significantly more readable than any of the other examples you've listed.
Sometimes I concatenate the lines further:
if (X == Null) {
Something();
Somethingelse();
}
else if (Blah == "Give up") { Somemore(); }
else { ShootYourself(DateTime.Now); }
(this isn't the best of examples (and not helped by the formatting on OSNews), even I wouldn't concatenate specifically here, but sometimes it does aid readability.
edit:
The beauty Pascal is that the entire If is one statement with compounds, the beauty of the C# is that it is not (really.) Both have advantages.
You can use blocks in C-derived languages as well:
{
if (X == Null) {
Something();
Somethingelse();
} else if (Blah == "Give up") {
Somemore();
} else {
ShootYourself(DateTime .Now);
}
}
Edited 2013-01-16 14:10 UTC





Member since:
2006-01-11
I use both punctuation (C) and verbose (ADA) languages and tolerate both well.
The solution is a syntax colouring editor with very different colours for keywords and plain identifiers (not black and dark blue...)
The begin/end stuff becomes colorful patches surrounding black code.