I have a constructor that accepts an object of type Material:
SomeClass::SomeClass( const Material& mat ) ;
However, Material allows construction by a Vector:
Material::Material( const Vector& v ) ;
Therefore, SomeClass can allow construction by a Vector:
SomeClass m( vec ) ; // valid, since vec is constructed to a Material first,
// then is passed to the SomeClass(Material) ctor
However, after "shooting myself in the foot" more than once with ctors of this type (in different classes in the same project!) I want to disallow construction of SomeClass by Vector objects directly, instead always requiring a Material to be passed instead.
Is there a way to do this? Somehow think it has to do with the explicit keyword.
Material::Materialconstructor asexplicit. In C++03 you had to also make sure that there was nooperator Materialin theVectorclass. However, with C++11 you can mark also such an conversion operator asexplicit(the best is IMHO to avoid conversion operators and instead generally provide conversion via named functions). Cheers & hth., – Cheers and hth. - Alf Dec 9 '11 at 3:00