devxlogo

Accessing Information About a Class at Runtime Using an Object of the Class

This can be done for classes derived from CObject through a functionality provided by the MFC as a macro named RUNTIME_CLASS.

1. Make a class derived from CObject and create its object somewhere:

 MyClass MyClassObj = new MyClass;


2. Code at some other place where the object is visible.

 CRuntimeClass* p = RUNTIME_MACRO(MyClass);


3. The pointer p contains a structure representing details of the classCMyClass and can be used to determine whether an object is of the type CMyClass:

 CObject* pMyNewObject = new CMyClass;


It may also perform some processing, such as:

 if(pMyNewObject->IsKindOf( RUNTIME_CLASS( CMyClass ) ) ){//if IsKindOf is true, then do something//some code...}

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.