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 the purpose of decltype?
Explain queue. How it can be implemented?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
What is the operator in c++?
give me some class & objects examples?
What does it mean to declare a destructor as static?
How new/delete differs from malloc()/free?
Out of fgets() and gets() which function is safe to use and why?
Difference between shift left and shift right?
What is flush programming?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
Floating point representation and output seems to be compiler dependent?