In C++, is it safe to extend scope via a reference?
In code, what I mean is:
MyCLass& function badIdea()
{
MyClass obj1;
...
return obj1;
}
|
|
|
|
|
|
|
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 |
||||||
|
|
|
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 |
||
|
|
|
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 |
||||
|
|
|
It can be dangerous or useful, depending on your design. Be careful. A Dangerous Usage (Don't Do This)
The final line binds the Example object created within dangerous() so that it's destructor is not called. This is okay and can be applied in a careful design (for instance, supplying a Strategy object as an initialization argument to a constructor). Emphasis: The problem here is that Example has a pointer data member, which is initialized to point to data that is local to dangerous()'s stack, and goes away once we return from dangerous(). A Useful Usage (Apply with Care)Here is a simplistic example showing how to use const references to attach a default policy to a class constructor:
Here, the reference binds to the data member, and will live as long as do does, regardless of whether the policy object is the supplied default, or an 'outside' object as in the example. |
||||
|