What is problem with Runtime type identification?
Answers were Sorted based on User's Feedback
Answer / guest
Run Time Type Identification (RTTI) affects the performance
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / achal ubbott
RTTI feature was added to know the type of the object at
the run time. Most modern standard c++ compilers support
this feature. Now since the identification is done at the
runtime, this makes the execution slow.
| Is This Answer Correct ? | 2 Yes | 2 No |
How can I learn dev c++ programming?
When should we use container classes instead of arrays?
What is the meaning of string in c++?
What is prototype for that c string function?
What is private inheritance?
What do you mean by Stack unwinding?
What do you mean by inheritance in c++? Explain its types.
How can you find the nodes with repetetive data in a linked list?
What is prototype in c++ with example?
Describe delete operator?
What is null and void pointer?
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].