Which one should I use?
catch (_com_error e)
or
catch (_com_error& e)
|
|
|
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.
Catching by reference avoids this issue by not copying the exception.
|
|||||||||||
|
|
Personally, I would go for the third option:
|
|||
|
|
|
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). |
|||
|
|
|
Definitely the second. If you had the following:
|
|||||||||
|