Someone posted in a comment to another question about the meaning of the explicit keyword in C++. So, what does it mean?
|
In C++, the compiler is allowed to make one implict conversion to resolve the parameters to a function. What this means is that the compiler can use single parameter constructors to convert from one type to another in order to get the right type for a parameter. Here's an example class with a constructor that can be used for implicit conversions:
Here's a simple function that takes a
and here's where the
The parameter is not a The compiler is allowed to do this once for each parameter. Prefixing the The reason you might want to do this is to avoid accidental construction that can hide bugs. Contrived example:
|
|||||||||||||||||||||
|
|
Suppose you have a class String
Now if you try
the char 'x' will be converted to int and will call String(int) constructor. But this is not what the user might have intended. So to prevent such conditions, we can define the class's constructor as explicit.
|
|||||||||||||||||||
|
|
In C++, a constructor with only one required parameter is considered an implicit conversion function. It converts the parameter type to the class type. Whether this is a good thing or not depends on the semantics of the constructor. For example, if you have a string class with constructor On the other hand, if you have a buffer class whose constructor
That way,
becomes a compile-time error. If you want to pass a temporary
In summary, if your single-parameter constructor converts the parameter into an object of your class, you probably don't want to use the |
|||
|
|
|
This has already been discussed (what is explicit constructor). But I must say, that it lacks the detailed descriptions found here. Besides, it is always a good coding practice to make your one argument constructors (including those with default values for arg2,arg3,...) as already stated. Like always with C++: if you don't - you'll wish you did... Another good practice for classes is to make copy construction and assignment private (a.k.a. disable it) unless you really need to implement it. This avoids having eventual copies of pointers when using the methods that C++ will create for you by default. An other way to do this is derive from boost::noncopyable. |
|||||
|
|
Here is one more good example for explicit in C++ http://www.glenmccl.com/tip_023.htm |
|||
|
|
|
The |
||||
|
|
|
The
the The
Here, |
||||
|
|

explicitcan be applied to more than just constructors. It's now valid when applied to conversion operators as well. Say you have a classBigIntwith a conversion operator tointand an explicit conversion operator tostd::stringfor whatever reason. You'll be able to sayint i = myBigInt;, but you'll have to cast explicitly (usingstatic_cast, preferably) in order to saystd::string s = myBigInt;. – chris Aug 30 '12 at 16:52