Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If a class inherits from another and overrides a virtual function, how must the exception-specification for the derived (overridden) function be related to the base function?

Is that is must be at least as restrictive? right? or others?

share|improve this question
1  
Note: Exception specifications are generally considered a bad idea and a failed experiment in C++ (Note: They are considered a failure for completely different reason than Java). IMO only "no throw" specifications are useful and you can't get more restrictive than that. – Loki Astari Mar 14 '11 at 6:04
what do you mean @Martin? could you explain more? – Josh Morrison Mar 14 '11 at 6:13
@Josh Morrison: If code does throw something the exception specification doesn't allow, the program immediately aborts. This is about equivalent to curing somebody's acne by cutting off their head. – Jerry Coffin Mar 14 '11 at 6:36
@Josh: check this out...An example of why Exceptions are a failed experiment.stackoverflow.com/questions/3828748/… – Alok Save Mar 14 '11 at 6:53
1  
@James Kanze: I would prefer my code to abort at compile time for contract violations in the interface. I rarely want my application to abort at runtime because of an exception (though I may want it to unroll the stack and exit). – Loki Astari Mar 14 '11 at 11:34
show 2 more comments

2 Answers

up vote 8 down vote accepted

Yes, it must be at least as restrictive (ยง15.4/3):

If a virtual function has an exception-specification, all declarations, including the definition, of any function that overrides that virtual function in any derived class shall only allow exceptions that are allowed by the exception-specification of the base class virtual function.

share|improve this answer
Just wondering from which site do you get these statements regarding C++, or is it from book? – Shamim Hafiz Mar 14 '11 at 6:32
Oops -- I forgot to include the citation. That's from paragraph 15.4/3 of the C++ standard. – Jerry Coffin Mar 14 '11 at 6:33

It is $15.4 p.5 in http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf: "If a virtual function has an exception-specification, all declarations, including the definition, of any function that overrides that virtual function in any derived class shall only allow exceptions that are allowed by the exception-specification of the base class virtual function"

share|improve this answer
+1 for putting a link to the std – Sharpie Apr 23 at 0:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.