vote up 8 vote down star

Which one should I use?

catch (_com_error e)

or

catch (_com_error& e)
flag

77% accept rate

4 Answers

vote up 21 vote down check

The second. Here is my attempt at quoting Sutter

"Throw by value, catch by reference"

Here's the full summary


The reason to avoid catching exceptions by value is that it implicitly makes a copy of the exception. If the exception is of a subclass, then information about it will be lost.

try { throw MyException ("error") } 
catch (Exception e) {
    /* Implies: Exception e (MyException ("error")) */
    /* e is an instance of Exception, but not MyException */
}

Catching by reference avoids this issue by not copying the exception.

try { throw MyException ("error") } 
catch (Exception& e) {
    /* Implies: Exception &e = MyException ("error"); */
    /* e is an instance of MyException */
}
link|flag
do you mean the first? – Doug T. Sep 29 '08 at 23:17
Doug T: No the second. Catch by reference. – Martin York Sep 29 '08 at 23:29
A bit more detail in the answer would be nice. Leave link for the exact details but put in details (and example) about the most accepted method. – Martin York Sep 29 '08 at 23:31
I 2nd the point made by Martin York. – Richard Corden Sep 30 '08 at 1:33
Added some info and examples to the answer. – John Millikin Sep 30 '08 at 1:59
show 2 more comments
vote up 3 vote down

Definitely the second. If you had the following:

class my_exception : public exception
{
  int my_exception_data;
};

void foo()
{
  throw my_exception;
}

void bar()
{
  try
  {
    foo();
  }
  catch (exception e)
  {
    // e is "sliced off" - you lose the "my_exception-ness" of the exception object
  }
}
link|flag
I believe the point of the question was whether to catch by reference or by value, not whether to catch some base class version of the exception. – Matt Dillard Sep 29 '08 at 23:54
The slicing problem is one of the main reasons you should always catch by reference – 1800 INFORMATION Sep 30 '08 at 0:12
I see now what you mean - if e were caught by reference in your example, polymorphism would kick in appropriately. – Matt Dillard Sep 30 '08 at 0:28
Scott Meyers goes into great detail on this topic in Effective C++ – 1800 INFORMATION Sep 30 '08 at 7:10
vote up 5 vote down

Also, note that, when using MFC, you may have to catch by pointer. Otherwise, @JaredPar's answer is the way you should normally go (and hopefully never have to deal with things that throw a pointer).

link|flag
vote up 5 vote down

Personally, I would go for the third option:

catch (const _com_error& e)
link|flag
Yes, if at all possible, it should be const. – Miquella Oct 9 '08 at 21:51

Your Answer

Get an OpenID
or

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