Re: Exception specifications unfortunate, and what about their future?
On 20 Nov., 22:37, DeMarcus <demar...@hotmail.com> wrote:
[..]
I don't blame the authors, don't take me wrong, but to me it seems like
the exception specifications need to be fixed when two of the most
renowned C++ programmers recommend us to avoid them.
I think statically checked exception specifications (the same way as in
Java) should be implemented because of three things.
1. Prefer *compile time* check before run-time.
2. It helps the programmer to see what exceptions *at least* must be
handled when using a method.
3. *Use* exception specifications rather than avoid them.
Still a method should be able to throw whatever it likes as for instance
std::bad_alloc, and that should not lead to automatic termination. This
way is just like Java can throw new InternalError() without having the
compiler complain if not in the exception specification.
So, what's the future of exception specifications? As I always try to
prepare for the future I have made two base classes.
class ErrorException
class ProblemException
Classes inheriting from ErrorException could be for instance
OutOfMemoryException or InvalidArgumentException.
Classes inheriting from ProblemException could be for instance
FileNotFoundException or PermissionDeniedException.
Quite often do I use exceptions to report problems that can go wrong,
and should be able to go wrong, e.g. FileNotFoundException. From a
programmer's perspective it's good if the compiler complains if I have
missed to catch any of these problems, whereas show stoppers like
OutOfMemoryException is something one would like to handle in a
different way.
My suggestion is to change to statically checked exception
specifications where the compiler complains about all non-caught
exceptions except those derived from some std::error_exception.
I cannot much agree. Let me first add that I have some
experience with Java and I have not seen much advantage
for checked exceptions - in contrast, they give you a false
security that nothing else might fail. I have found *lots*
of programmer error's due to this, e.g. consider
interface IMyStream {
void doSomeIoStuff(SomeResource r) throws IOException;
}
void userFunc(IMyStream strm) {
SomeResource res = new SomeResource(...); // Allocate non-memory
resource,
// like file handles or some such
try {
strm.doSomeIoStuff(res);
} catch (IOException e) {
res.dispose();
}
}
This function ('method' in Java nomenclature) can easily cause
resource leaks, just consider a null strm argument (which
throws unchecked NullPointerException) or any other unchecked
exception thrown from doSomeIoStuff (for whatever reason).
[Yes, *you* would certainly use an additional finally block,
but as I said, this is not something, everyone is aware of]
The only exception for my refusal to love checked exception would
be the strict no-throw guarantee - this is a quite important one
and a compiler taking advantage of such beast can easily optimize
the code.
Just my 2 Euro cents,
Daniel Kr?gler
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]