|
Clean code, jump free (Example in Lua)
The "goto" statement - in languages that still support it - is regarded with disdain by Computer Scientists as it makes for spaghetti code - hard to follow and going all over the place!
In some ways, loop controls "break" and "continue" ("last", "next" and "redo" in Perl; "next", "redo", "retry" and "break" in Ruby) are also forms of the goto. They are not as bad in that they only jump within a limited area, but on the other hand many forms don't involve labels so that there's no clue at the destination point in your code that it's an arrival point.
Having slagged off these statements (and in reality I'm being a pedantic computer scientist by doing so - I use them personally from time to time!) I had better off you the alternative. Written on yesterday's Lua course as a demonstration - here's a while loop that has an ugly break in it ...
j=14
while 1 do
print (j)
if j > 20 then break end
j = j + 1
end
print ("done")
... and here's the alternative using a control variable. ...
j=14
running = true
while running do
print (j)
if j > 20 then
running = false
else
j = j + 1
end
end
print ("done")
That code being longer, but purer and easier to maintain. (written 2008-08-06 06:32:19)
Associated topics are indexed under U103 - Lua - Conditionals and loopsR104 - Ruby - Control Structures
Some other Articles
Lua - Table elements v table as a wholeAge ConcernVertical LondonBath, Snake or Nag?Clean code, jump free (Example in Lua)Rules, suggestions, considerations for Lua variable namesCurrent visitors from around the world - PHPFinding words and work boundaries (MySQL, Perl, PHP)All around the world?memcached - overview, installation, example of use in PHP
|
1889 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|