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(type);
OR
typeid(expression);
Parameters: typeid operator accepts a parameter, based on the syntax used in the program:
- type: This parameter is passed when the runtime type information of a variable or an object is needed. In this, there is no evaluation that needs to be done inside type and simply the type information is to be known.
- expression: This parameter is passed when the runtime type information of an expression is needed. In this, the expression is first evaluated. Then the type information of the final result is then provided.
Return value: This operator provides the runtime type information of the specified parameter and hence that type information is returned, as a reference to an object of class type_info.
Usage: typeid() operator is used in different way according to the operand type.
- When operand is a variable or an object.
CPP
#include <iostream>
#include <typeinfo>
using namespace std;
int main()
{
int i, j;
char c;
const type_info& ti1 = typeid (i);
const type_info& ti2 = typeid (j);
const type_info& ti3 = typeid (c);
if (ti1 == ti2)
cout << "i and j are of"
<< " similar type" << endl;
else
cout << "i and j are of"
<< " different type" << endl;
if (ti2 == ti3)
cout << "j and c are of"
<< " similar type" << endl;
else
cout << "j and c are of"
<< " different type" << endl;
return 0;
}
|
Output
i and j are of similar type
j and c are of different type
- When operand is an expression.
CPP
#include <iostream>
#include <typeinfo>
using namespace std;
int main()
{
int i = 5;
float j = 1.0;
char c = 'a' ;
const type_info& ti1 = typeid (i * j);
const type_info& ti2 = typeid (i * c);
const type_info& ti3 = typeid (c);
cout << "ti1 is of type "
<< ti1.name() << endl;
cout << "ti2 is of type "
<< ti2.name() << endl;
cout << "ti3 is of type "
<< ti3.name() << endl;
return 0;
}
|
Output:
ti1 is of type f
ti2 is of type i
ti3 is of type c
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Sep, 2021
Like Article
Save Article