The bada C++ style guide/architecture uses a two-step initialization of C++ objects.
Why did they not simply require the use of scoped_ptr?
|
The bada C++ style guide/architecture uses a two-step initialization of C++ objects. Why did they not simply require the use of scoped_ptr?
| |||||||||||||
feedback
|
|
You should ask them, because I am not a psychic. However I suspect their answer will be the same as is written in bold near the top of that page: "Without two-phase construction, resource leak occurs". I disagree with this assessment, though; the real problem is that their In terms of "why did they not simply require scoped_ptr": I'd imagine it's a C++03 document that's talking about C++, not third party libraries. | |||||||||||||
feedback
|
|
The scoping is not the reason for the two-phase construction. The fact that constructors don't have any other way to return error than exception and they are not using exceptions are (IMHO the only reason is that they think it's still 10 years ago). | |||
|
feedback
|