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 long does it take to get good at leetcode?
How are the features of c++ different from c?
What is the basic difference between C and C++?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
Name the operators that cannot be overloaded in C++?
What is RAII (Resource Acquisition Is Initialization)?
Why struct is used in c++?
What is a container class? What are the types of container classes?
How the delete operator differs from the delete[]operator?
What is the difference between the indirection operator and the address of oper-ator?
Is vector a class in c++?
Show the declaration for a static function pointer.