Re: exception
On Feb 17, 6:51 am, "Alf P. Steinbach" <al...@start.no> wrote:
* ramu:
Can anybody tell how to restrict a function from throwing any
exception?
With a standard-conforming compiler you can achieve
essentially that by giving the routine an empty throw
specification, e.g.
void foo() throw() { }
But this isn't a compile time restriction, it's a run time
restriction.
Which makes sense, sort of, because throwing an exception is a
runtime action, and it's impossible in the general case to know
whether a function will throw an exception or not. Consider:
extern sqrt( double x ) throw ( math_error ) ;
// only if x < 0.0...
double
f() throw()
{
return sqrt( 2.0 ) ;
}
How is the compiler to know that this function can't throw.
And FWIW: I'm repeating the "official" argument here.
Personally, I'd rather see static checking, even if it meant
that the implementer had to write that last function as:
doubld
f() throw()
{
try {
return sqrt( 2.0 ) ;
} catch ( ... ) {
abort() ;
}
But my views don't hold that much weight in the standard's
committee.
In fact the standard guarantees that even if foo very clearly
throws some exception, the code will be accepted. If foo
throws, the effect is then to cause a call of the current
'unexpected' handler, which by default terminates the program.
That's sort of a misrepresentation. It's like saying that the
standard guarantees that:
void
f()
{
assert( 1 == 0 ) ;
}
has to be accepted. It's true, but that's not the point.
Not all compilers / compiler versions implement this scheme,
though: an exception specification may just be ignored by your
compiler.
You might also point out that writing reliable exception safe
code isn't possible with such a compiler. For a GUI front end
which is only concerned with presentation, no big deal, but I
wouldn't use such a compiler on a mission critical server. (Of
course, the compiler in question doesn't support any platforms
that anyone would use for mission critical servers, so perhaps
it isn't that bad. No matter what precautions you take, your
software will never be more robust than the platform you run
on.)
If so then you can achieve essentially the same yourself by
defining a wrapper routine. E.g.,
void foo() { }
void foo_nothrow()
{
try { foo(); } catch( ... ) { std::terminate(); }
}
And except for the on-exception action this also illustrates
what the compiler has to generate code to do when you equip
some routine with an empty throw specification.
Almost. It's behavior is significantly different if you replace
the standard std::terminate with one which throws an exception.
(To which I would respond: don't do it.)
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34