The question is simple. Why does this compile:
bool b(true);
if (b) { /* */ }
And this compile:
if (bool b = true) { /* */ }
But not this:
if (bool b(true)) { /* */ }
In my real code, I need to construct an object and test it, while also having it destroyed when the if-block ends. Basically, I'm looking for something like this:
{
Dingus dingus(another_dingus);
if (dingus) {
// ...
}
}
Of course, this would work:
if (Dingus dingus = another_dingus) { /* */ }
But then I'm constructing a Dingus and calling operator= on it. It seems logical to me that I would be able to construct the object using whatever constructor I please.
But I'm baffled why this isn't grammatically correct. I've tested with G++ and MSVC++ and they both complain about this construct, so I'm sure it's part of the spec but I'm curious as to the reasoning for this and what non-ugly workarounds there may be.

=symbol). – GManNickG Nov 30 '11 at 20:10=initialization can result in a copy-construction if the compiler doesn't elide the copy. It is not possible to assign (operator=) to an object that has not been constructed. – ildjarn Nov 30 '11 at 20:34T x(a)is called direct-initialization. This meansxis constructed directly using a constructor that acceptsa. (2)T x = y(a)is called copy-initialization.xis constructed fromyusing the copy-constructor, andyis directly-initialized. (3) In almost all cases the compiler will turn copy-initialization into direct-initialization, so performance is of no concern. The only issue is that copy-initialization requiresTbe copy-constructable, which isn't always the case. – GManNickG Nov 30 '11 at 20:42The actual code will be going in a macro- stop sweating it then! Nobody needs to look at that macro. Just code it verbosely, three lines of code extra and grab a beer - wrap the whole shebang indo { ..... } while(false)for macro sanity and be merry – sehe Nov 30 '11 at 23:05