In C++, is it safe to extend scope via a reference?
In code, what I mean is:
MyCLass& function badIdea()
{
MyClass obj1;
...
return obj1;
}
|
feedback
|
|
It is NOT safe to extend the scope via reference. Objects in C++ are not reference counted when obj1 goes out of scope it will be deleted, refering to the result of badIdea() will only get you into trouble | |||||||
feedback
|
|
The only place it's OK to extend a scope with a reference is with a
This trick is used in Andrei Alexandrescu's very cool scope guard in order to capture a | |||
feedback
|
|
Please clarify what you do mean. Assuming you intend to do this:
Then no, absolutely not, scope does not get extended by having a reference. You may want to look at smart pointers, e.g. from boost libraries: clickety | |||||||
feedback
|