How are static data and method details stored in C++
I have a very basic 开发者_JAVA技巧doubt, In C++ does there exist a data structure for each Type which stores static data and methods defined by that type, similar to the data structure that exists in .NET for every Type.
Regards, Jeez
No, there's no such thing (called reflection) in C++.
精彩评论