Why are .Net programmers so afraid of exceptions? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T23:45:27Zhttp://stackoverflow.com/feeds/question/351400http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions4Why are .Net programmers so afraid of exceptions?Jason Baker2008-12-09T00:15:55Z2008-12-09T18:12:23Z
<p>First of all, I'm not trying to be critical of anyone here or saying that all .Net programmers are this way. But I'm definitely noticing a trend: .Net programmers seem to avoid exceptions like they're the plague.</p>
<p>Of course, there's always the <a href="http://blogs.msdn.com/oldnewthing/archive/2004/04/22/118161.aspx" rel="nofollow">Raymond Chen</a> blog post about how hard exceptions can be to handle. But that doesn't just apply to .Net.</p>
<p>In a lot of other languages/environments, I don't notice that programmers are as likely to avoid exceptions as they are in .Net. Heck, in Python, exceptions are thrown in normal program execution (iterators throw StopIteration exceptions).</p>
<p>So what am I missing here? Or am I totally off base in thinking that .net programmers avoid exceptions more than others?</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351413#35141323Answer by Erik for Why are .Net programmers so afraid of exceptions?Erik2008-12-09T00:22:01Z2008-12-09T18:12:23Z<p>Performance is the fear monger's buzzword when it comes to exceptions - but that really only applies to throwing them or handling them in tight loops, or for when relying on them for control flow. Personally I see exceptions as another tool in my toolbox; I'm not scared of them at all. Ideally when you use exceptions you're using them in exceptional circumstances - that is, should no longer be concerned with performance, but rather with fixing the problem (rare) or failing fast and notifying the user / logging / etc.</p>
<p>Edit: JaredPar mentioned a great quote regarding this that I feel is important enough to repeat: "If you're worried about Exception performance, you're using them incorrectly." Once we find attribution I'll amend this post to include it.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351416#35141612Answer by KiwiBastard for Why are .Net programmers so afraid of exceptions?KiwiBastard2008-12-09T00:23:09Z2008-12-09T00:23:09Z<p>Under .NET, exceptions are (can be) expensive operations. Most .NET developers prefer to code around possible exceptions.</p>
<p>For example it's better to check for null rather than catch NullExceptions.</p>
<p>Guideline <a href="http://www.guidanceshare.com/wiki/.NET_2.0_Performance_Guidelines_-_Exception_Management" rel="nofollow">here</a> and <a href="http://msdn.microsoft.com/en-us/library/ms229009(VS.80).aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351419#3514194Answer by PaulMorel for Why are .Net programmers so afraid of exceptions?PaulMorel2008-12-09T00:23:23Z2008-12-09T00:23:23Z<p>Using exceptions is okay in some situations, but exception handling in .Net is incredibly slow. So using exceptions for control flow is nearly always a mistake, if a simple IF statement will do the job just well.</p>
<p>Short Answer: performance</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351422#3514221Answer by nzpcmad for Why are .Net programmers so afraid of exceptions?nzpcmad2008-12-09T00:24:28Z2008-12-09T00:24:28Z<p>I work in a Java / .NET shop and neither group avoids exceptions as a general rule.</p>
<p>They are just another tool and definitely have their place when used correctly.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351429#3514290Answer by MK_Dev for Why are .Net programmers so afraid of exceptions?MK_Dev2008-12-09T00:28:06Z2008-12-09T00:28:06Z<p>Wild guess: could it be the fact that a lot of .NET programmers come from other languages where exceptions are tolerated much less?</p>
<p>I mostly program in C# (and a little and Java) and see no problems with exceptions as long as they are handled carefully (just like EVERYTHING else should be).</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351431#35143112Answer by Jimmy for Why are .Net programmers so afraid of exceptions?Jimmy2008-12-09T00:29:05Z2008-12-09T15:42:56Z<p>.NET is heavily optimized to allow the non-exceptional case to run as fast as possible, at the expense of exception performance.</p>
<p><a href="http://www.voidspace.org.uk/python/weblog/arch_d7_2007_04_21.shtml#e688" rel="nofollow">Comparing IronPython to CPython</a></p>
<blockquote>
<p>The only two tests that really stand out as showing a deep performance issue are the two exception handling ones. These are the only tests where either implementation is more than 4x faster than the other. IronPython is 10x faster on the try/catch without an exception and CPython is 30x faster when an exception is actually raised. This is a deliberate design decision within .NET to make code that doesn't throw exceptions run faster - even if that means slowing down code that does throw exceptions. I'm fairly confident this was the right decision - and even remember the day long ago when Guido was discussing Python's exception system and explained that he'd accept almost any slow-down to the exceptional case in return for removing a single instruction from the non-exceptional path.</p>
</blockquote>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351435#3514351Answer by Booji Boy for Why are .Net programmers so afraid of exceptions?Booji Boy2008-12-09T00:31:21Z2008-12-09T00:31:21Z<p>The performance issue is a good point. The performance of exceptions in .NET 1.0 was <em>really</em> bad especially. However, I'd say that another reason is due to pre VB.NET - in the old days of Visual Basic the only way to handle errors/exceptions was unstructured goto , resume & resume next. This made most VB programmers avoid errors/exceptions at all costs. Old habits die hard. A lot C# programmers used to be VB programmers, though they might not want to admit it. I, for one loves my VB.NET. </p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351436#3514362Answer by Brian for Why are .Net programmers so afraid of exceptions?Brian2008-12-09T00:31:55Z2008-12-09T00:31:55Z<p>Throwing exceptions during "normal" program execution ruins the debugging experience ("catch all first-chance exceptions" is very handy, except in code that throws lots of exceptions as part of main-line execution).</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/ms229014.aspx" rel="nofollow">design guidelines</a> are good.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351446#3514461Answer by Tigraine for Why are .Net programmers so afraid of exceptions?Tigraine2008-12-09T00:36:03Z2008-12-09T00:36:03Z<p>I remember back then in .NET 1.1 when a exception tool like 3 seconds to be raised.
Everything went fast but when the exception was thrown it took forever.
So I started to avoid them :)</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351468#3514682Answer by kloucks for Why are .Net programmers so afraid of exceptions?kloucks2008-12-09T00:54:56Z2008-12-09T00:54:56Z<p>Using exceptions as another control flow mechanism (i.e. as default unstructured GOTO command) should be expensive and discouraged. </p>
<p>Using exceptions as:</p>
<ul>
<li>application layer firewalls - to keep the app from blundering on after a business logic failure and writing corrupt info to a database for instance </li>
<li>and contract enforcers - when you invoke a method your contract with that method stipulates parameter and state will be consonant with the service you request that method provide</li>
</ul>
<p>this doesn't require performance so much as a reliable mechanism for capturing and managing an app failure </p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351477#3514773Answer by le dorfier for Why are .Net programmers so afraid of exceptions?le dorfier2008-12-09T01:02:58Z2008-12-09T01:02:58Z<p>Single biggest reason: VB6 didn't have them.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351492#3514922Answer by Petras for Why are .Net programmers so afraid of exceptions?Petras2008-12-09T01:12:01Z2008-12-09T01:12:01Z<p>Programmers don't use exceptions because they think their code will never throw them. Programmers don't tend to see bugs or problems as when they write their code and test it locally, everything works. So why do you need exceptions? Thinking about what will or won't throw an exception interrupts your main stream of thought.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/351604#3516046Answer by Jim Davis for Why are .Net programmers so afraid of exceptions?Jim Davis2008-12-09T02:24:56Z2008-12-09T02:24:56Z<p>Depends what you mean by "avoid exceptions". You might mean<br />
1. design your APIs so that incorrect arguments are indicated by return codes, not exceptions<br />
2. Not establish any exception handlers (e.g. try/catch, or begin/rescue)<br />
3. take extra care in checking arguments, so as not to cause exceptions in functions called. </p>
<p>Or perhaps you meant something else entirely.</p>
<p>As others above already said, it's costly to raise an exception. But more than that, it can be unclear, and I would avoid unclear code even more than I would avoid costly code. </p>
<p>Exceptions should be used for exceptional (that is, unusual or unacceptable situtations.) So for instance, if one were writing a string search function that returns the 0-based index of the first matching substring, what would you do if the string is not found. You could raise an exception or you could return -1. All things being equal, -1 is better, as failing to find a string within another is non unacceptable or even wrong. On the other hand, if you were writing a validation function, let's say it's something that's supposed to check that the user has entered a valid ice-cream flavour (and in your limited world, there are only three flavours) then it might be right to throw (or raise) an Exception if given an invalid kind of ice-cream. (But then again, suppose you want the application, if given an "invalid" ice-cream, to put up a form to place a special order for the ice-cream. Then you would <em>not</em> want the exception, you'd want the return code.</p>
<p>As for not establishing any handlers, one thing I can tell you is I have seen a lot of code that has empty (omnivorous) error handlers that just silently ignore the exception and keep going. I don't know whether .NET people do that any more than on other platforms, but it drives me nuts, as it makes debugging quite difficult.)</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/353156#3531560Answer by Nailer for Why are .Net programmers so afraid of exceptions?Nailer2008-12-09T15:36:56Z2008-12-09T15:36:56Z<p>Not to diss anyone here, but I think that .NET is so easy for inexperienced programmers to use that you will see a lot of strange .NET code.</p>
<p>I have several friends who I studied with who never ever should be programming professionals with the limited skillset they had at graduation.</p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/353434#3534342Answer by Steven Behnke for Why are .Net programmers so afraid of exceptions?Steven Behnke2008-12-09T16:45:38Z2008-12-09T16:45:38Z<p>Exceptions should be used for things are truly exceptional. If you can check to see if a file exists before you open it and handle it that way then it is what you should do. There is no good way to determine that you're out of memory on a system until you try to allocate something and an exception should be generated. Of course if you receive an OutOfMemoryException there is nothing your application can do other than clean up the state it is in as best it can and gracefully shut down. Like many others have said the performance for exceptions in the early version of .Net was pretty bad. I don't know for sure if the new version has improved because I try to handle exceptions a bit differently these days.</p>
<p>There are some cases where you truly can do something about the exception and these are the only exceptions your application should capture. I hate seeing a catch (Exception) {} block because there might be a legitimate exception being gobbled up by the catch block that should otherwise cause the application to terminate.</p>
<p>Eric Lippert has good things to say about exceptions and handling them:</p>
<p><a href="http://blogs.msdn.com/ericlippert/archive/2008/09/10/vexing-exceptions.aspx" rel="nofollow">http://blogs.msdn.com/ericlippert/archive/2008/09/10/vexing-exceptions.aspx</a></p>
http://stackoverflow.com/questions/351400/why-are-net-programmers-so-afraid-of-exceptions/353452#3534521Answer by Steven Behnke for Why are .Net programmers so afraid of exceptions?Steven Behnke2008-12-09T16:48:37Z2008-12-09T16:48:37Z<p>I cannot comment yet, but in response to the Java comment here's Anders' point of view on checked exceptions and why the exception handling system was designed the way it was:</p>
<p><a href="http://www.artima.com/intv/handcuffs.html" rel="nofollow">http://www.artima.com/intv/handcuffs.html</a></p>