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 |
What is static class data?
What is lambda expression c++?
What are the advantages of pointers?
Is c or c++ more useful?
How is memory managed in C++?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
Explain the static storage classes in c++.
How are virtual functions implemented in c++?
Can we use clrscr in c++?
When should we use multiple inheritance?
Is c++ map a hash table?
what are function pointers?