What is problem with Runtime type identification?

Answers were Sorted based on User's Feedback



What is problem with Runtime type identification? ..

Answer / guest

Run Time Type Identification (RTTI) affects the performance

Is This Answer Correct ?    5 Yes 2 No

What is problem with Runtime type identification? ..

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

Post New Answer

More C++ General Interview Questions

What is the precedence when there is a global variable and a local variable in the program with the same name?

0 Answers  


What is difference between shallow copy and deep copy? Which is default?

1 Answers  


Write a struct time where integer m, h, s are its members?

0 Answers  


what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking

2 Answers   Hughes,


Write a C++ Program to Generate Random Numbers between 0 and 100

1 Answers  


Comment on local and global scope of a variable.

0 Answers  


Explain the purpose of the keyword volatile.

0 Answers  


i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem

1 Answers   Reliance,


What is the use of namespace std in C++?

0 Answers   Hexaware,


Does c++ cost money?

0 Answers  


without if else statement can be written ah

0 Answers  


What is using namespace std in c++?

0 Answers  


Categories