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 |
Difference between shift left and shift right?
What is difference between shallow copy and deep copy? Which is default?
What is data types c++?
How do we balance an AVL Tree in C++?
what is difference between internet and Internet?
12 Answers College School Exams Tests, Microsoft, MIT, TCS,
What data encapsulation is in c++?
sizeof - is it a function or operator?
What happens if an exception is throws from an object's constructor and from object's destructor?
What are manipulators in c++ with example?
What are the data types in c++?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What is the main purpose of overloading operators?