Use of explicit keyword in C++
Last Updated : 14 Sep, 2022
Explicit Keyword in C++ is used to mark constructors to not implicitly convert types in C++. It is optional for constructors that take exactly one argument and work on constructors(with a single argument) since those are the only constructors that can be used in typecasting.
Let's understand explicit keyword through an example.
Predict the output of the following C++ Program
CPP // C++ program to illustrate default // constructor without 'explicit' // keyword #include <iostream> using namespace std; class Complex { private: double real; double imag; public: // Parameterized constructor Complex(double r = 0.0, double i = 0.0) : real(r), imag(i) { } // A method to compare two // Complex numbers bool operator == (Complex rhs) { return (real == rhs.real && imag == rhs.imag); } }; // Driver Code int main() { // a Complex object Complex com1(3.0, 0.0); if (com1 == 3.0) cout << "Same"; else cout << "Not Same"; return 0; }
As discussed in this article, in C++, if a class has a constructor which can be called with a single argument, then this constructor becomes a conversion constructor because such a constructor allows conversion of the single argument to the class being constructed. In this case, when com1 == 3.0 is called, 3.0 is implicitly converted to Complex type because the default constructor can be called with only 1 argument because both parameters are default arguments and we can choose not to provide them.
We can avoid such implicit conversions as these may lead to unexpected results. We can make the constructor explicit with the help of an explicit keyword. For example, if we try the following program that uses explicit keywords with a constructor, we get a compilation error.
CPP // C++ program to illustrate // default constructor with // 'explicit' keyword #include <iostream> using namespace std; class Complex { private: double real; double imag; public: // Default constructor explicit Complex(double r = 0.0, double i = 0.0) : real(r), imag(i) { } // A method to compare two // Complex numbers bool operator == (Complex rhs) { return (real == rhs.real && imag == rhs.imag); } }; // Driver Code int main() { // a Complex object Complex com1(3.0, 0.0); if (com1 == 3.0) cout << "Same"; else cout << "Not Same"; return 0; }
Output
Compiler Error : no match for 'operator==' in 'com1 == 3.0e+0'
We receive an error here because to avoid any unexpected errors we have made our constructor an explicit constructor and 3.0 won't be converted to Complex by our constructor on its own.
We can still typecast the double values to Complex, but now we have to explicitly typecast it. For example, the following program works fine.
CPP // C++ program to illustrate // default constructor with // 'explicit' keyword #include <iostream> using namespace std; class Complex { private: double real; double imag; public: // Default constructor explicit Complex(double r = 0.0, double i = 0.0): real(r) , imag(i) { } // A method to compare two // Complex numbers bool operator == (Complex rhs) { return (real == rhs.real && imag == rhs.imag); } }; // Driver Code int main() { // a Complex object Complex com1(3.0, 0.0); if (com1 == (Complex)3.0) cout << "Same"; else cout << "Not Same"; return 0; }
Note: The explicit specifier can be used with a constant expression. However, if that constant expression evaluates to true, then only the function is explicit.
Similar Reads
Const keyword in C++ In this article, the various functions of the const keyword which is found in C++ are discussed. Whenever const keyword is attached with any method(), variable, pointer variable, and with the object of a class it prevents that specific object/method()/variable to modify its data items value.Constant
10 min read
Using Keyword in C++ STL The using keyword in C++ is a tool that allows developers to specify the use of a particular namespace. This is especially useful when working with large codebases or libraries where there may be many different namespaces in use. The using keyword can be used to specify the use of a single namespace
6 min read
C++ Keywords Keywords are the reserved words that have special meanings in the C++ language. They are the words that have special meaning in the language. C++ uses keywords for a specifying the components of the language, such as void, int, public, etc. They can't be used for a variable name, function name or an
2 min read
typeid operator in C++ with Examples typeid is an operator in C++. It is used where the dynamic type or runtime type information of an object is needed.It is included in the <typeinfo> library. Hence inorder to use typeid, this library should be included in the program.The typeid expression is an lvalue expression. Syntax: typeid
3 min read
C++: Methods of code shortening in competitive programming Shortcode is ideal in competitive programming because programs should be written as fast as possible. Because of this, competitive programmers often define shorter names for datatypes and other parts of the code. We here discuss the method of code shortening in C++ specifically.Type names Using the
5 min read