#1 Members - Reputation: 252
Posted 21 June 2012 - 03:02 AM
[source lang="cpp"]class Ptr{public: Ptr(void* ptr = NULL, bool owned= true); ...}Ptr ptr(false);[/source]
This seems to compile pretty well, and the false is implicitly converted to a null pointer! In case you give true as argument to this constructor, you get a compile error.
Now my question is: how can you prefend that the bool is converted automatically to a null pointer. I tried an explicit constructor with only one bool argument. But that made it impossible to send NULL as pointer to the first.
#2 Members - Reputation: 4032
Posted 21 June 2012 - 03:35 AM
It appears that the gentleman thought C++ was extremely difficult and he was overjoyed that the machine was absorbing it; he understood that good C++ is difficult but the best C++ is well-nigh unintelligible.
#3 Members - Reputation: 2049
Posted 21 June 2012 - 03:45 AM
warning: converting 'false' to pointer type for argument 1 of 'Ptr::Ptr(void*, bool)'
Strictly speaking, your compiler is correct about doing this conversion. The standard says: (4.5-6) "A prvalue of type bool can be converted to a prvalue of type int, with false becoming zero and true becoming one." and (4.10) "A null pointer constant is an integral constant expression (5.19) prvalue of integer type that evaluates to zero or a prvalue of type std::nullptr_t. A null pointer constant can be converted to a pointer type".
This explains why it is legal for false, but not for true (the former is a null pointer constant, the latter is not). It's converting a bool constant to an integer constant, which happens to be a null pointer constant, which it converts to a (null) pointer.
Edited by samoth, 21 June 2012 - 03:48 AM.
#4 Members - Reputation: 252
Posted 21 June 2012 - 05:55 AM
ps. I am compiling with the microsoft compiler, which does not produce by default a warning for this.
#5 Members - Reputation: 292
Posted 21 June 2012 - 01:34 PM
Default arguments in constructors should almost always be implemented as different constructors along with associating initialization lists.
#6 Members - Reputation: 474
Posted 21 June 2012 - 04:48 PM
http://ideone.com/qiHP9
Default arguments in constructors should almost always be implemented as different constructors along with associating initialization lists.
That makes sense, if your compiler supports delegating constructors. VC10/11 do not. Otherwise, you are duplicating a lot of code, or using initializer private methods.
#7 Moderators - Reputation: 8538
Posted 21 June 2012 - 05:21 PM
As for delegating constructors, it isn't hard for your constructors to run along the lines:
MyObject::MyObject()
{
ConstructInternal( NULL, false, true);
}
MyObject::MyObject(Something* ptr )
{
ConstructInternal( ptr, false, true);
}
MyObject::MyObject(Something* ptr, bool owned )
{
ConstructInternal( ptr, false, owned);
}
MyObject::MyObject(bool aFlag)
{
ConstructInternal( NULL, aFlag, true);
}
...
We do this all the time in our game code for exactly the reason you describe in your post.True it is not as pretty as default parameters, but it does help resolve the problem of implicit conversions.
As the project grows and a new parameter becomes needed we just add another signature so we don't break existing code. It solves so many headaches when sharing code between multiple consoles.
Edit: as a side note, try to avoid plain bool as a flag. Use an enum and specifically state what the thing is or is not. Today there are two choices, but tomorrow you may need a third.
Edited by frob, 21 June 2012 - 05:23 PM.
#8 Members - Reputation: 312
Posted 22 June 2012 - 01:43 PM
Plus, new Object( MakeBobYourUncle.True ) ; is much less ambiguous than new Object( true ) ;Edit: as a side note, try to avoid plain bool as a flag. Use an enum and specifically state what the thing is or is not. Today there are two choices, but tomorrow you may need a third.
Edited by Narf the Mouse, 22 June 2012 - 01:43 PM.
#10 Members - Reputation: 97
Posted 11 September 2012 - 03:08 PM
I recently encountered a piece of code like the following (not saying anything about whether it is good or not):
[source lang="cpp"]class Ptr{public: Ptr(void* ptr = NULL, bool owned= true); ...}Ptr ptr(false);[/source]
if you define false as !true this will no longer compile.
#define false !true
This topic is locked





