tags:

views:

68

answers:

1

Can one use RTTI for distributed systems? If so, what are the disadvantages? too slow, too much memory or performance unpredictable?

Thanks

A: 

The implementation of C++'s built-in RTTI is compiler-dependent/specific; which might cause problems if you want to distribute it to more than one system, where different systems have different compilers.

ChrisW