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 |
Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.
Program to read a comment string
what is opps?why it is use in programming language?
what is the drawback of classical methods in oops?
Pls...could any one tell me that whether we can access the public data memeber of a class from another class with in the same program. Awaiting for your response Thanku
What is a mixin class?
what is difference between thread and programme.
What is encapsulation with example?
what is polymorphism?
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
What is abstract class in oop?
Conversion from a basic type to a class type may be achieved using______________