j_random_hacker

9,417
Reputation
1310 views

Registered User

Name j_random_hacker
Member for 11 months
Seen 54 mins ago
Website
Location
Age
I have no egrets.
Nov
19
comment Why should exceptions be used conservatively?
So you're saying: Over time, other statements can accrete inside the try block and then you aren't certain any more that the catch block is really catching the thing you thought it was catching -- is that right? While it's harder to misuse the if/then/else approach in the same way because you can only test 1 thing at a time rather than a set of things at once, so the exceptiony approach can lead to more fragile code. If so please discuss this in your answer and I'll happily +1, as I think code fragility is a bona fide reason.
Nov
19
comment Why should exceptions be used conservatively?
I agree with you as far as all rules of thumb have long lists of caveats. Where I disagree is that I think it's worthwhile trying to identify the original reasons for the rule, as well as the specific caveats. (I mean in an ideal world, where we have infinite time to ponder these things and no deadlines of course ;)) I think that's what the OP was asking for.
Nov
19
comment Why should exceptions be used conservatively?
Hehe imagine that... Exceptions as an optimisation technique :)
Nov
18
comment Best way to return early from a function returning a reference
@Whyamistilltyping: If you use an assertion, and it sounds like you (a) should be and (b) are already doing so, you don't need to return anything. You don't need that if (!SomeCondition) at all -- just replace that whole block with assert(SomeCondition);.
Nov
18
comment Passing around fixed-size arrays in C++?
@Adrien: It will compile, but the compiler will ignore the number 3, silently "decaying" the type of result from int result[3] to int *result (usually without even giving a warning). Which is a bit sneaky of the compiler if you ask me ;)
Nov
18
answered Token Suffix Tree Tutorial
Nov
18
comment Why should exceptions be used conservatively?
@Developer Art: Thanks for the update. One reason you gave that I haven't seen mentioned yet is that in practice, we live in an imperfect world where not all of the surrounding code is necessarily exception-safe, and without having that guarantee throwing exceptions willy-nilly is very dangerous. +1.
Nov
18
comment Why should exceptions be used conservatively?
@R. Pate: In case your response "Proof by analogy..." was directed at me: What I was trying to say is that I think your use of exceptions to escape from postconditions that can't be satisfied is a perfectly good and valid use of the exception-handling mechanism provided by the language (or equivalently, you described a good way to cook a meal using an oven). What I'm asking is whether there are other useful things that might be done with the exception-handling mechanism provided by the language (other things that could be done with the oven besides cooking).
Nov
18
comment Why should exceptions be used conservatively?
Thanks for elaborating, but IMHO your 2 code snippets have almost identical complexity -- both use highly localised control logic. Where the complexity of exceptions most clearly exceeds that of it/then/else is when you have a bunch of statements inside the try block, any one of which could throw -- would you agree?
Nov
18
comment Why should exceptions be used conservatively?
@Dan: Thanks for the clarification, I agree with a lot of what you say. Although performance may be the only objective criterion, I think it's often much less useful than other (unfortunately subjective) criteria like maintainability. (As an aside, I was surprised to see just how slow the exceptions made things in your tests -- I hacked together the moral equivalent of your Example 1 in C++, and the exception-using version is ~10 times slower using g++ or only about twice as slow using MSVC++ on my machine.)
Nov
18
comment Why should exceptions be used conservatively?
IMHO you haven't explained why the conservatism is necessary. Why are they only "appropriate" sometimes? Why not all the time? (BTW I think your suggested approach is just fine, it's more or less what I do myself, I just don't think it gets at much of the why of the question.)
Nov
18
comment Why should exceptions be used conservatively?
There may be no definitive "why", but there are partial "why"s that others mention, e.g. "because that's what everyone else is doing" (IMHO a sad but real reason) or "performance" (IMHO this reason is usually overstated, but it's a reason nonetheless). The same is true of the other rules of thumb like avoiding goto (usually, it complicates control flow analysis more than an equivalent loop) and avoiding global variables (they potentially introduce a lot of coupling, making later code changes difficult, and usually the same goals can be achieved with less coupling other ways).
Nov
17
comment How do I escape the const_iterator trap when passing a const container reference as a parameter
+1 since a postcondition in the comments is about all you can practically do in C++ -- but it's not the ideal solution. Catskul's last comment is illuminating.
Nov
17
comment How do I escape the const_iterator trap when passing a const container reference as a parameter
+1, excellent post. (It's unfortunate that C++ is not more orthogonal so that we could forget about binding to temporaries being a special case.) The basis of the problem is that const is not granular enough for what Catskul wants -- it's an all-or-nothing proposition. But as you demonstrate with your mutating-predicate example, it's hard to imagine a more granular form of const that doesn't allow all kinds of "surprising" behaviour. IOW it's hard to imagine a more-granular form of const that is practically useful.
Nov
17
comment Why should exceptions be used conservatively?
-1. Please read the question carefully. Most programmers either think that exceptions are appropriate for certain types of error handling, or that they are never appropriate -- they don't even consider the possibility of using them for other, more exotic forms of flow control. The question is: why is that?
Nov
17
comment Why should exceptions be used conservatively?
... and the asker would like to know why it is a rule of thumb, rather than hear (yet again) that it's a rule of thumb. -1.
Nov
17
comment Why should exceptions be used conservatively?
I especially liked your mention of the fact that "not all teams ... are ready to use exceptions". Exceptions are definitely something that seem easy to do, but are extremely hard to do right, and that's part of what makes them dangerous.
Nov
17
comment Why should exceptions be used conservatively?
+1, good reasons in general. But note that the cost of stack unwinding and calling of destructors (at least) is paid by any functionally equivalent error-handling mechanism, e.g. by testing for and returning error codes as in C.
Nov
17
comment Why should exceptions be used conservatively?
+1, the "least surprise" principle does enhance maintainability.
Nov
17
comment Why should exceptions be used conservatively?
+1, some good practical reasons to avoid using exceptions.
Nov
17
comment Why should exceptions be used conservatively?
Tempted to -1, since I think the performance loss is grossly overestimated > 99% of the time. Although your GetNine() function makes any good programmer feel itchy, I'll bet that 99% of the time it does a good enough of getting 9. As a real-world example, I'm told that Linux kernel sources contain a ton of code where things are done in the "dumbest possible way" -- linear scans through fixed-size arrays or linked lists, when tree structures or hashtables would be faster. "Dumb" is just fine when n is small.
Nov
17
comment Why should exceptions be used conservatively?
-1. "Exceptions have their right for error handling and purely for error handling" -- says who? Why? Performance cannot be the only reason. (A) Most code in the world is not in the innermost loop of a game rendering engine or matrix multiplication function, so using exceptions will have no perceptible performance difference. (B) As onebyone noted in a comment somewhere, all that stack unwinding would ultimately need to take place anyway even if the old C-style check-for-error-return-values-and-pass-back-if-needed error-handling approach was used.
Nov
17
comment Why should exceptions be used conservatively?
Why is it bad? Why should you write it the 2nd way? The asker wants to know reasons for rules, not rules. -1.
Nov
17
comment Why should exceptions be used conservatively?
Why not? Why not use exceptions for the 2nd case you mention? The asker wants to know reasons for rules, not rules.
Nov
17
comment Why should exceptions be used conservatively?
You're answering the wrong question. We don't want to know why we should (or should not) consider using exceptions for handling error scenarios -- we want to know why we should (or should not) use them for non-error-handling scenarios.
Nov
17
comment Why should exceptions be used conservatively?
@Pavel: Please ignore my incorrect comment above (now deleted) saying that Java finally blocks are not guaranteed to be run -- of course they are. I was getting confused with the Java finalize() method, which is not guaranteed to be run.
Nov
17
comment Why should exceptions be used conservatively?
+1 for mentioning language culture as the reason to go with the flow. That answer is unsatisfying to some, but it is a genuine reason (and I believe it's the most accurate reason).
Nov
17
comment Why should exceptions be used conservatively?
+1, more fresh air, thank you.
Nov
17
comment Why should exceptions be used conservatively?
-1 sorry, you're answering the wrong question. We don't want to know why we should (or should not) consider using exceptions for handling error scenarios -- we want to know why we should (or should not) use them for non-error-handling scenarios.
Nov
17
comment Why should exceptions be used conservatively?
@onebyone: Your 2nd comment actually makes a good point I haven't seen made elsewhere. I think the answer to that is that (as you effectively said in your own answer) using exceptions for error conditions has been absorbed into the "standard practices" of many languages, making it a useful guideline to adhere to even if the original reasons for doing that were misguided.
Nov
17
comment Why should exceptions be used conservatively?
+1. There are no hard and fast rules, just conventions -- but it's useful to adhere to the conventions of others who use your language, since it makes it easier for programmers to understand each others' code.
Nov
4
answered Read blocks from an ext3 filesystem?
Nov
1
revised Why can I define structures and classes within a function in C++?
Added the relevant quote from the standard in response to catskul's comment.
Oct
29
accepted What is the default state of variables?
Oct
20
awarded  Populist
Oct
15
accepted Data structure or algorithm for second degree lookups in sub-linear time?
Oct
3
answered Can you return multiple result sets using PDO and PostgreSQL?
Sep
29
answered “Pinnacle” of Encapsulation - Question Regarding Advice from Effective C++
Sep
28
awarded  Nice Answer
Sep
21
answered Is there an C++ equivalent to Python’s “import bigname as b”?
Sep
20
accepted C++ Member Function Pointers and STL Algorithm Problem
Sep
20
revised Expand Tabs to Spaces in C?
Avoid buffer overflows; more sensible function name; int -> size_t.
Sep
20
answered Expand Tabs to Spaces in C?
Sep
20
revised C++ Member Function Pointers and STL Algorithm Problem
Talk about how to handle the case where for_each() operates many times on a single A-derived object.
Sep
20
answered C++ Member Function Pointers and STL Algorithm Problem
Sep
20
revised Code Golf: Email Address Validation without Regular Expressions
"paid" -> "pair"
Sep
19
answered Class constructor with non-argument template type
Sep
18
answered Is it possible to compare two tables when no common key exists between them?
Sep
18
answered Script to insert logging into every function in a project?
Sep
16
revised Is end() required to be constant in an STL map/set?
"grantees" -> "guarantees"