how do u identify RTTI in vc++

Answers were Sorted based on User's Feedback



how do u identify RTTI in vc++..

Answer / amol vaidya

Check if class is derived directly or indirectly from
CObject. CObject provides facility of RTTI.

With this functionality enable IsKindof like functions can
be used and utilised any where for that object.

Is This Answer Correct ?    13 Yes 2 No

how do u identify RTTI in vc++..

Answer / zero zero...

Check if class is derived directly or indirectly from
CObject. CObject provides facility of RTTI check to its
derived classes.

 DECLARE_DYNAMIC and IMPLEMENT_DYNAMIC, permit run-
time access to the class name and its position in the
hierarchy. This, in turn, allows meaningful diagnostic
dumping.

 CObject::IsKindOf function to determine the class
of your objects at run time.

Is This Answer Correct ?    8 Yes 1 No

how do u identify RTTI in vc++..

Answer / santhosh

with the help of IsKindOf function is used to achieve RTTI.

Iskindof function is used to test the objects relationship to the given class.

this function works only for a class delared the below macros,
- DECLARE_DYNAMIC
- DECLARE_DYNCREATE
- DECLARE_SERIEL

Is This Answer Correct ?    0 Yes 0 No

how do u identify RTTI in vc++..

Answer / raghavender

In VC++ compiler project properties->C/C++ ->language-
>Enable Runtime Information to YES (/GR) compiler option

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More MFC Interview Questions

Explain Doc/View architecture

6 Answers   Huawei,


What is the difference between GetMessage and PeekMessage ?

3 Answers  


Whats is DDX & DDV in MFC?

1 Answers   HCL,


What is the difference between workrer thread and UI thread

3 Answers   HCL,


Can you explaing the relashionship between document,frame and view ?

2 Answers  






What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?

5 Answers   Atos Origin,


How can we create thread in MFC framework?

3 Answers  


What is the base class for most MFC classes?

7 Answers   CMC, Siemens,


What is a message map, and what is the advantage of a message map over virtual functions?

1 Answers  


Explain the flow of SDI application?

8 Answers   Mphasis,


What is the difference between the Encapsulation and Abstraction

25 Answers   HCL, Invensys, TCS, Wipro,


In VC++ How to transfer between one exe to another exe while running..

5 Answers   Wipro,


Categories