Re: Sometimes I want to separate the declaration and construction of a local variable
In article
<dcd2cd3b-6c84-46d5-83e4-a14af3105ef1@q35g2000hsg.googlegroups.com>,
itaj sherman <itajsherman@gmail.com> wrote:
It seems to me that it has these drawbacks:
1) Is there a way to avoid the construction of the temporary object X
and then calling the copy constructor (optional::operator= calls it)?
Look at the in-place factory at
<http://www.boost.org/doc/libs/1_36_0/libs/optional/doc/html/boost_optional/in_place_factories.html>.
3?) Does Boost.optional hold the object directly inside it or does it
allocate another buffer on the free store?
Directly inside.
Another thing: in any way, IMO optional should not be used directly
for this, rather it should be wrapped by another template class more
specific to this use. This class should have only the required
interface for this use (unlike the very wide interface of optional).
I'm looking at the interface at
<http://www.boost.org/doc/libs/1_36_0/libs/optional/doc/html/boost_optional/synopsis.html>.
Which parts of this interface do you feel are unnecessary?
--
Nevin ":-)" Liber <mailto:nevin@eviloverlord.com> 773 961-1620
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]