Top "Rtti" questions

RTTI stands for Run-Time Type Information, it is also known as reflection; it allows access to compile-time data at run-time.

Difference between RTTI and reflection in Java

My question is when how does the class info gets loaded during runtime? When someone calls instanceof is that considered …

java reflection terminology rtti instanceof
C++ - downcasting a diamond shape inherited object without RTTI/dynamic_cast

I'm currently working on integrating a third-party package that uses lots of RTTI stuff on a non-RTTI platform (Android). Basically, …

c++ casting multiple-inheritance rtti diamond-problem
delphi xe disable RTTI

i have use delphi xe recently but exe size is very big because of rtti(i think) howto remove rtti , …

delphi rtti delphi-xe application-size
Checking the object type in C++11

I have class B that inherits from A. class A { }; class B : public A { }; And I have three objects. A* …

c++ c++11 rtti typeid
Why use std::type_index instead of std::type_info*

I need to key some data in a map by a type. Currently I have something like this: struct TypeInfoComparer { …

c++ c++11 rtti
Why should I care about RTTI in Delphi?

I've heard a lot about the new/improved RTTI capabilities of Delphi 2010, but I must admit my ignorance...I don't …

delphi reflection delphi-2010 rtti
std::any without RTTI, how does it work?

If I want to use std::any I can use it with RTTI switched off. The following example compiles and …

c++ stl c++17 rtti
Why is dynamic_cast evil or not ? Should I use dynamic_cast in this case?

Some say the use of dynamic_cast often means bad design and dynamic_cast can be replaced by virtual functions …

c++ rtti dynamic-cast
Why is 'pure polymorphism' preferable over using RTTI?

Almost every C++ resource I've seen that discusses this kind of thing tells me that I should prefer polymorphic approaches …

c++ polymorphism rtti
Where are the Delphi Attributes Real World Examples?

I know by TMS Aurelius that we can use the "new" 2010 attributes feature to serialize database table fields into object …

delphi oop attributes rtti