An example that uses typeid for base and derived classes : typeid « Development « C++






An example that uses typeid for base and derived classes

An example that uses typeid for base and derived classes
 


#include <iostream>
#include <typeinfo>
using namespace std;

class BaseClass {
  virtual void f() {}; // make BaseClass polymorphic
  
};

class Derived1: public BaseClass {
  
};

class Derived2: public BaseClass {
  
};

int main()
{
  int i;
  BaseClass *p, baseob;
  Derived1 object1;
  Derived2 object2;

  cout << "Typeid of i is ";
  cout << typeid(i).name() << endl;
  
  p = &baseob;
  cout << "p is pointing to an object of type ";
  cout << typeid(*p).name() << endl;

  p = &object1;
  cout << "p is pointing to an object of type ";
  cout << typeid(*p).name() << endl;

  p = &object2;
  cout << "p is pointing to an object of type ";
  cout << typeid(*p).name() << endl;

  return 0;
}

           
         
  








Related examples in the same category

1.Here is a simple example that uses typeidHere is a simple example that uses typeid
2.An example that uses typeid on a polymorphic class hierarchyAn example that uses typeid on a polymorphic class hierarchy
3.Demonstrate runtime type id.
4.typeid for polymorphic class
5.A simple example that uses typeid.
6.Use a reference with typeid.
7.Demonstrating run-time type id.
8.typeid Can Be Applied to Template Classestypeid Can Be Applied to Template Classes
9.Demonstrate == and != relative to typeid.Demonstrate == and != relative to typeid.