摘要:
注册博客有一段时间,一直很忙没有写技术文章,今天把近期心得写出来一起分享。c++没有反射机制,我们可以通过c++的语言特性去实现同样的功能。本文介绍使用type_info实现的一些发射特性。1 type_info简介:class type_info {public: _CRTIMP virtual ~type_info(); _CRTIMP int operator==(const type_info& rhs) const; _CRTIMP int operator!=(const type_info& rhs) const; _CRTIMP int before(c... 阅读全文