Linked by Thom Holwerda on Tue 15th Jan 2013 21:24 UTC
Thread beginning with comment 549028
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.
if (x = y) then dosomthing else dosomthingelse(y);
That is a pure statement, with no semicolon after the first clause. Geddit?
I don't. How is that any different from
(x == y) ? dosomething() : dosomethingelse(y);
?
Maybe it looks a bit more cryptic than its begin/end counterpart if you embed these kind of statements into each other, but not by much. Stacking ternary statements is always ugly and unreadable, regardless of the language used.
Because ? is an operator, not a key word and it doesn't really work in the same way - at least in c#. Plus in Pascal one can have as many segments in the statement as one likes:
if (x = y) then begin do1(); do3(); end else if (x = a) then do2() else begin do4(); end; //3 blocks
if (x = y) then begin do1(); do3(); end else if (x = a) then do2() else begin do4(); if (y = x) then begin do5(); do6(); end else do7(); end; //a 2 block embedded in a 3 block
Obviously, no one would format the code that way - it's just an example.
You can't really implement that using ? without a lot of unreadable complexity.




Member since:
2006-05-30
Compare that to the C#...
That's badly formatted C# "
Your opinion, and bear in mind, OSNews lost my indentation. To me, your code looks suboptimal for readability. I work in a large team, other people picking up classes and libraries I've written is essential. Standard style guides and conformity saves a lot of time and prevents prima donnas. Plus, having come from Pascal, those arguments just waste too much time. Suffice to say:
Lazy programmeritis:
if (x = y) then begin
.....
end else begin
....
end;
I once had a co worker that used this one:
if (x = y) then
begin
...
end
else
begin
end;
And this one:
if (x = y) then
begin
.....
end
else
begin
......
end;
Borland style:
if (x=y) then
begin
...
end;
And that is just scratching the surface and not even dealing with tabs, etc. It's a holy war, not worth winging about.
For C#, the basic layout I use (and enforce here) is based on the standard Microsoft use in all of their sample code. Sorry if you don't like that, complain to someone who has write access to Microsoft's source repository ;-) Visual Studio also usefully formats this way - why fight the IDE?
if ( X == Null )
{
Something();
Somethingelse();
}
else if ( Blah == "Give up" )
{
Somemore();
}
else
{
ShootYourself( DateTime.Now );
}
I never use tabs, they are evil. I use 2 spaces for "Tabstop" because otherwise your code shoots off to the right at great speed. I would go for simple over terse single line every time. I tend to (recently) add in extra space in if/else if/method params. This is just a concession to a speed reading on a high res monitor. Text scans better.
Not exactly the same thing. In Pascal this is one statement:
if (x = y) then dosomthing else dosomthingelse(y);
and so is this:
if (x = y) then begin dosomthing; end else dosomthingelse(y);
and so is this:
if (x = y) then begin dosomthing; doanotherthing(x); end else begin dosomthingelse(y); end;
dosomething and dosomethingelse(..) are compound, as are the other examples. Like I said, the C syntax is sort of similar, but not exactly. Pascal thinks of the compounds as being part of a single statement, with compound elements. Where as C doesn't (IIRC.) The braces in C are just a way to create a block and the if/else links those blocks together. Semantics, I know. But look again at the basic Pascal version:
if (x = y) then dosomthing else dosomthingelse(y);
That is a pure statement, with no semicolon after the first clause. Geddit? :-) C would require 2 statements linking the blocks:
if (x==y) dosomething(); else dosomthingelse(y);