W obu przypadkach, ponieważ łapiesz przez odniesienie, skutecznie zmieniasz stan oryginalnego obiektu wyjątku (który możesz pomyśleć jako rezydujący w magicznej lokalizacji pamięci, która pozostanie ważna podczas późniejszego rozwijania - 0x98e7058
w przykładzie poniżej). Jednak,
- W pierwszym przypadku, ponieważ wyrzucasz ponownie za pomocą
throw;
(który w przeciwieństwie do throw err;
zachowuje oryginalny obiekt wyjątku, z twoimi modyfikacjami, we wspomnianym „magicznym miejscu” w 0x98e7058
) będzie odzwierciedlać wywołanie append ()
- W drugim przypadku, skoro rzucasz coś wyraźnie, A copy of
err
zostanie utworzony potem rzucony na nowo (w innym miejscu „magicznym” 0x98e70b0
- bo wszystko kompilator wie, err
może być obiekt na stosie o się rozwinąć, jak e
było at 0xbfbce430
, a nie w „magicznej lokalizacji” at 0x98e7058
), więc podczas kopiowania instancji klasy bazowej utracisz dane specyficzne dla klasy pochodnej .
Prosty program ilustrujący, co się dzieje:
#include <stdio.h>
struct MyErr {
MyErr() {
printf(" Base default constructor, this=%p\n", this);
}
MyErr(const MyErr& other) {
printf(" Base copy-constructor, this=%p from that=%p\n", this, &other);
}
virtual ~MyErr() {
printf(" Base destructor, this=%p\n", this);
}
};
struct MyErrDerived : public MyErr {
MyErrDerived() {
printf(" Derived default constructor, this=%p\n", this);
}
MyErrDerived(const MyErrDerived& other) {
printf(" Derived copy-constructor, this=%p from that=%p\n", this, &other);
}
virtual ~MyErrDerived() {
printf(" Derived destructor, this=%p\n", this);
}
};
int main() {
try {
try {
MyErrDerived e;
throw e;
} catch (MyErr& err) {
printf("A Inner catch, &err=%p\n", &err);
throw;
}
} catch (MyErr& err) {
printf("A Outer catch, &err=%p\n", &err);
}
printf("---\n");
try {
try {
MyErrDerived e;
throw e;
} catch (MyErr& err) {
printf("B Inner catch, &err=%p\n", &err);
throw err;
}
} catch (MyErr& err) {
printf("B Outer catch, &err=%p\n", &err);
}
return 0;
}
Wynik:
Base default constructor, this=0xbfbce430
Derived default constructor, this=0xbfbce430
Base default constructor, this=0x98e7058
Derived copy-constructor, this=0x98e7058 from that=0xbfbce430
Derived destructor, this=0xbfbce430
Base destructor, this=0xbfbce430
A Inner catch, &err=0x98e7058
A Outer catch, &err=0x98e7058
Derived destructor, this=0x98e7058
Base destructor, this=0x98e7058
---
Base default constructor, this=0xbfbce430
Derived default constructor, this=0xbfbce430
Base default constructor, this=0x98e7058
Derived copy-constructor, this=0x98e7058 from that=0xbfbce430
Derived destructor, this=0xbfbce430
Base destructor, this=0xbfbce430
B Inner catch, &err=0x98e7058
Base copy-constructor, this=0x98e70b0 from that=0x98e7058
Derived destructor, this=0x98e7058
Base destructor, this=0x98e7058
B Outer catch, &err=0x98e70b0
Base destructor, this=0x98e70b0
Zobacz także: