What is R T T I ?
Answers were Sorted based on User's Feedback
Run Time Type Information ( 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 ? | 15 Yes | 2 No |
Answer / sanjay makwana, puna
Run time type identification.
through typeid operator we can justify object at run time.
| Is This Answer Correct ? | 8 Yes | 2 No |
RTTI as known Runtime Type Identification.
If you want to cast the object of one class as the object
of another class so u require to know the type of the
object at the runtime .
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / prabhakar
run time type identification
1. dynamic _cast
2.static cast
3.typeid
4.const cast.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / arun
RTTI> Run Time Type Identification
RTTI means during time of run object property can be
retrieve and changed. Under RTTI dynamic_cast<>, typeid,
const_cast<> etc are used.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / barkavi
RTTI means run-time type information or run-time type
identification.RTTI is mainly used for identifyig the type
of objects present in the program during execution.typeid is
one of identification in RTTI.run time type identifications
are namely
1.dynamic_cast
2.static cast
3.typeid
4.const cast
*typeinfo is holds the information of typeid
| Is This Answer Correct ? | 1 Yes | 0 No |
Please tell me the oops concept with detailed answer
Why do we need polymorphism in c#?
Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.
Can an interface inherit a class?
officer say me - i am offered to a smoking , then what can you say
What is abstract class in oops?
What is an orthogonal base class?
how to find the correct email address format by using the programe?
What are functions in oop?
Write a c++ program to display pass and fail for three student using static member function
What is the difference between the C & C++?
Does c++ support multilevel and multiple inheritance?