ratty
ratty

Reputation: 13444

Is there any concept in c++ like reflector in .Net?

i like to get code from c++ dll ,i know we easily get from .Net dll by reflector. Is there any method available in c++ for this?

Thanks In Advance

Upvotes: 6

Views: 9229

Answers (5)

Tony Delroy
Tony Delroy

Reputation: 106216

Code for introspective capabilities can be generated from the output of Gcc-XML, or injected with OpenC++, but the C++ Standard itself doesn't require any particular facilities for this and no facilities/utilities for this are bundled with any popular compilers. It's also possible for a C++ program to read the debugging information in its own executable file, but it's definitely not particularly portable, fast, or likely to make for a robust solution.

Upvotes: 1

Brent Arias
Brent Arias

Reputation: 30185

No, C++ has nothing like RedGate's reflector, and is incapable of such a thing. A disassembler will not come close to what you are looking for.

Upvotes: 1

Naveen
Naveen

Reputation: 73473

I believe you are talking about unmanaged C++. In that case, it is not possible. C++ is compiled into machine code unlike the managed languages which compile into an intermediate language which contain the metadata about the code which got compiled.

Upvotes: 6

pauljwilliams
pauljwilliams

Reputation: 19225

In short, no. Any 'reflection' must be through some hand coded mechanism.

Upvotes: 1

Darin Dimitrov
Darin Dimitrov

Reputation: 1039200

C++ is compiled directly to machine code. There's no intermediary language as in .NET. There are some C++ disassemblers you may take a look at. Hex-Rays decompiler is particularly good.

Upvotes: 16

Related Questions