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 |
Can you declare an array without a size in c++?
Write a program to calculate the BMI of a person using the formula BMI = weight/height2.
What is oops in c++?
What is protected inheritance?
Why is the function main() special?
Eplain extern keyword?
what is smart pointer & use of the smart pointer ???
What is singleton class in c++?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
What are the weaknesses of C++?
Explain the difference between using macro and inline functions?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?