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

Which one should I use?

catch (_com_error e)

or

catch (_com_error& e)
share|improve this question

4 Answers

up vote 25 down vote accepted

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 */
}
share|improve this answer
do you mean the first? – Doug T. Sep 29 '08 at 23:17
Doug T: No the second. Catch by reference. – Loki Astari 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. – Loki Astari 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

Personally, I would go for the third option:

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

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).

share|improve this answer

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
  }
}
share|improve this answer
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

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.