标签: c++ encoding stl hypertable
是否有一种标准方法可以将编码和解码字节数组转换为可以存储到std::string的字符序列?
std::string
此问题的原因是HyperTable值类型为std::string,因此您要在表中存储的任何自定义类型都需要序列化并存储到字符串中,然后,反序列化进行阅读。 (有关详细信息,请参阅此主题:https://groups.google.com/forum/?fromgroups=#!topic/hypertable-user/_igfvLv9IfA)