how do u identify RTTI in vc++
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
1.Get string1,string2,string3 1.add string1 and 2,string1 and 3. 2.replace vowels with T 3.count number of T. 4.remove T 5.COPY string1 to stringf. 6.restore string1. print the following 1.Number of T 2.StringF 3.string1+string2+string3 Use pointers and functions
What types of threads are supported by MFC framework?
How WM_PAINT message gets called in MFC,please explain it . a)Who calls the WM_PAINT message? b)When it gets called? c)how it comes to message queue? Please Explain it
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
What four types of properties are supported by an ActiveX control?
What is difference between the TCP/IP and UDP socket
1)How to load an icon on a button as Dynamically ?
What is thread & process?
What is the difference between the Encapsulation and Abstraction
25 Answers HCL, Invensys, TCS, Wipro,
1)At run-time, you can change the icon by calling the LoadIcon() function?
How can update edit control data of an executing application from other application?
how does conditionally close the Dialog Box ?