标签: c++ c++11
我想实现哈希映射,所以我想编写一个接受任何类对象的类,并根据对象大小返回结果。
示例:
class A { public: int a; }; class B { char b; }; my hash map class ??