我有以下代码在 C++ 中实现了一个简单的 Hash/Dict
哈希.h
using namespace std;
#include <string>
#include <vector>
class Hash
{
private:
vector<const char*> key_vector;
vector<const char*> value_vector;
public:
void set_attribute(const char*, const char*);
string get_attribute(const char*);
};
哈希.cpp
using namespace std;
#include "Hash.h"
void Hash::set_attribute(const char* key, const char* value)
{
key_vector.push_back(key);
value_vector.push_back(value);
}
string Hash::get_attribute(const char* key)
{
for (int i = 0; i < key_vector.size(); i++)
{
if (key_vector[i] == key)
{
return value_vector[i];
}
}
}
目前,它可以作为键/值的唯一类型是 a const char*
,但我想扩展它以便它可以采用任何类型(显然每个哈希只有一种类型)。我正在考虑通过定义一个将类型作为参数的构造函数来做到这一点,但我根本不知道在这种情况下如何做到这一点。我将如何做到这一点,我将如何实现它,以便将 set_attribute 定义为采用该类型?
编译器:单声道