What is a "RTTI"?
Answers were Sorted based on User's Feedback
Answer / roshanpr
RTTI stands for run time type identification.
| Is This Answer Correct ? | 13 Yes | 0 No |
Answer / sarmistha
RUN TIME TYPE INFORMATION. Afacility that allows an object
to b queried at runtime to determine its type.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / manju
RTTI stands for Run Time Type Information.It is used to
provide information about the dynamic type of an object.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / saravanan
already they had given abbr actually to find the runtime spec
we are using typeid() and typeinfo().
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vijayanand
Declares a TestNamer for the specified type, using RTTI if
enabled, otherwise using macro string expansion.
RTTI is used if CPPUNIT_USE_TYPEINFO_NAME is defined and
not null.
Run-time Type Information
| Is This Answer Correct ? | 0 Yes | 0 No |
What is conversion constructor?
Shall we use 'free' to free memory assigned by new, What are the further consequences??
is throwing exception from a constructor not a good practice ?
What is the role of C++ shorthand's?
What are the stages in the development cycle?
What are protected members in c++?
Can you sort a set c++?
Define 'std'.
What is function declaration in c++ with example?
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,
Explain terminate() function?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected