what is ltti
Answer / m.shanmugasundaram,rjnsoftware
First of all, it is not ltti. Its RTTI
Run-time type information (RTTI) is a mechanism that allows
the type of an object to be determined during program
execution.
There are three main C++ language elements to run-time type
information:
The dynamic_cast operator. Used for conversion of
polymorphic types.
The typeid operator. Used for identifying the exact type of
an object.
The type_info class. Used to hold the type information
returned by the typeid operator.
| Is This Answer Correct ? | 9 Yes | 2 No |
What is class encapsulation?
How long to learn object oriented programming?
What is design patterns in C++?
When is an object created and what is its lifetime?
suppose A is a base class and B is the derved class. Both have a method foo which is defined as a virtual method in the base class. You have a pointer of classs B and you typecast it to A. Now when you call pointer->foo, which method gets called? The next part of the question is, how does the compiler know which method to call?
143.what is oops principles?
What do you mean by pure virtual functions?
how to find the correct email address format by using the programe?
Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.
Describe the difference between a Thread and a Process?
What are functions in oop?
What is the difference between const int *ptr and int const *ptr???