std::map const char* 作为key
时间: 2023-11-22 17:59:52 浏览: 219
在 C++ 中,可以使用 `std::map` 容器来存储一组键值对,其中键和值可以是各种类型。如果想将 `const char*` 作为键,可以使用 `std::string` 或者自定义比较函数作为键的类型。
例如,可以定义一个比较函数 `cmp`,用来比较两个 `const char*` 类型的字符串:
```c++
struct cmp {
bool operator()(const char* a, const char* b) const {
return std::strcmp(a, b) < 0;
}
};
```
然后,可以使用 `std::map<const char*, int, cmp>` 来定义一个键为 `const char*` 类型,值为 `int` 类型的 `map` 容器,其中第三个参数为自定义的比较函数 `cmp`。这样就可以使用字符串作为键来进行映射了。例如:
```c++
std::map<const char*, int, cmp> m;
m["apple"] = 1;
m["banana"] = 2;
m["orange"] = 3;
std::cout << m["apple"] << std::endl; // 输出 1
```
需要注意的是,使用 `const char*` 作为键时,需要自己管理字符串的内存,避免出现悬空指针或者内存泄漏等问题。可以考虑使用 `std::string` 来代替 `const char*`,从而避免这些问题。
相关问题
class InformationUI { public: /*视角0第一视角1第三视角*/ int viewAngleEnum; /*球标图*/ int bubble; /*是否英制螺牙*/ int isEnglishSystem; /*是否添加研磨符号*/ int isLap; /*球标图大小*/ double bubbleSize; /*图纸路径*/ std::string drawSheetPath; /*客户标准*/ std::string customer; /*被选中零件标记*/ std::string selLable; /*投影视图0主视图1右视图2前视图3左视图4后视图5正三轴*/ int view[6]; /*公共属性and属性值*/ std::map<std::string, std::string> commonAttrAndVal; /*临时部件*/ static std::string tempPartName; };如何这个类换为二进制格式,并将其保存到文件中
可以使用序列化技术将该类转换为二进制格式,并将其保存到文件中。以下是示例代码:
```cpp
#include <fstream>
#include <iostream>
#include <cstring>
#include <map>
#include <sstream>
class InformationUI {
public:
/*视角0第一视角1第三视角*/
int viewAngleEnum;
/*球标图*/
int bubble;
/*是否英制螺牙*/
int isEnglishSystem;
/*是否添加研磨符号*/
int isLap;
/*球标图大小*/
double bubbleSize;
/*图纸路径*/
std::string drawSheetPath;
/*客户标准*/
std::string customer;
/*被选中零件标记*/
std::string selLable;
/*投影视图0主视图1右视图2前视图3左视图4后视图5正三轴*/
int view[6];
/*公共属性and属性值*/
std::map<std::string, std::string> commonAttrAndVal;
/*临时部件*/
static std::string tempPartName;
// 序列化成二进制格式
std::string serialize() {
std::stringstream ss;
// 写入基本类型变量
ss.write(reinterpret_cast<char*>(&viewAngleEnum), sizeof(viewAngleEnum));
ss.write(reinterpret_cast<char*>(&bubble), sizeof(bubble));
ss.write(reinterpret_cast<char*>(&isEnglishSystem), sizeof(isEnglishSystem));
ss.write(reinterpret_cast<char*>(&isLap), sizeof(isLap));
ss.write(reinterpret_cast<char*>(&bubbleSize), sizeof(bubbleSize));
// 写入字符串
int strSize = drawSheetPath.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(drawSheetPath.c_str(), strSize);
strSize = customer.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(customer.c_str(), strSize);
strSize = selLable.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(selLable.c_str(), strSize);
// 写入整型数组
ss.write(reinterpret_cast<char*>(view), sizeof(view));
// 写入map
strSize = commonAttrAndVal.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
for (auto it = commonAttrAndVal.begin(); it != commonAttrAndVal.end(); ++it) {
strSize = it->first.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(it->first.c_str(), strSize);
strSize = it->second.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(it->second.c_str(), strSize);
}
// 写入静态变量
strSize = tempPartName.size();
ss.write(reinterpret_cast<char*>(&strSize), sizeof(strSize));
ss.write(tempPartName.c_str(), strSize);
return ss.str();
}
// 从二进制格式反序列化
void deserialize(const std::string& data) {
std::stringstream ss(data);
// 读取基本类型变量
ss.read(reinterpret_cast<char*>(&viewAngleEnum), sizeof(viewAngleEnum));
ss.read(reinterpret_cast<char*>(&bubble), sizeof(bubble));
ss.read(reinterpret_cast<char*>(&isEnglishSystem), sizeof(isEnglishSystem));
ss.read(reinterpret_cast<char*>(&isLap), sizeof(isLap));
ss.read(reinterpret_cast<char*>(&bubbleSize), sizeof(bubbleSize));
// 读取字符串
int strSize;
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
drawSheetPath.resize(strSize);
ss.read(&drawSheetPath[0], strSize);
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
customer.resize(strSize);
ss.read(&customer[0], strSize);
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
selLable.resize(strSize);
ss.read(&selLable[0], strSize);
// 读取整型数组
ss.read(reinterpret_cast<char*>(view), sizeof(view));
// 读取map
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
commonAttrAndVal.clear();
for (int i = 0; i < strSize; ++i) {
std::string key, value;
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
key.resize(strSize);
ss.read(&key[0], strSize);
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
value.resize(strSize);
ss.read(&value[0], strSize);
commonAttrAndVal[key] = value;
}
// 读取静态变量
ss.read(reinterpret_cast<char*>(&strSize), sizeof(strSize));
tempPartName.resize(strSize);
ss.read(&tempPartName[0], strSize);
}
};
// 保存到文件
void saveToFile(const std::string& filename, const InformationUI& info) {
// 序列化
std::string data = info.serialize();
// 写入文件
std::ofstream fout(filename, std::ios::binary);
fout.write(data.c_str(), data.size());
}
// 从文件读取
InformationUI readFromFile(const std::string& filename) {
// 读取文件
std::ifstream fin(filename, std::ios::binary);
std::string data((std::istreambuf_iterator<char>(fin)), std::istreambuf_iterator<char>());
// 反序列化
InformationUI info;
info.deserialize(data);
return info;
}
int main() {
InformationUI info;
info.viewAngleEnum = 1;
info.bubble = 2;
info.isEnglishSystem = 1;
info.isLap = 0;
info.bubbleSize = 3.14;
info.drawSheetPath = "test.dwg";
info.customer = "ABC";
info.selLable = "DEF";
info.view[0] = 0;
info.view[1] = 1;
info.commonAttrAndVal["attr1"] = "value1";
info.commonAttrAndVal["attr2"] = "value2";
InformationUI::tempPartName = "temp";
saveToFile("test.bin", info);
InformationUI info2 = readFromFile("test.bin");
std::cout << info2.viewAngleEnum << std::endl;
std::cout << info2.bubble << std::endl;
std::cout << info2.isEnglishSystem << std::endl;
std::cout << info2.isLap << std::endl;
std::cout << info2.bubbleSize << std::endl;
std::cout << info2.drawSheetPath << std::endl;
std::cout << info2.customer << std::endl;
std::cout << info2.selLable << std::endl;
std::cout << info2.view[0] << std::endl;
std::cout << info2.view[1] << std::endl;
std::cout << info2.commonAttrAndVal["attr1"] << std::endl;
std::cout << info2.commonAttrAndVal["attr2"] << std::endl;
std::cout << InformationUI::tempPartName << std::endl;
return 0;
}
```
在上面的示例中,我们使用`serialize()`函数将`InformationUI`类序列化为二进制格式,在`deserialize()`函数中将二进制格式反序列化为`InformationUI`类。`saveToFile()`函数将序列化后的数据保存到文件中,`readFromFile()`函数从文件中读取数据并反序列化为`InformationUI`类。
const char*作为map的key,find不到
使用 `const char*` 作为 `map` 的键时,需要自定义比较函数,否则默认的比较函数是比较指针的地址,而不是字符串的内容。
以下是一个示例代码,其中定义了一个自定义比较函数 `cmp`,用于比较 `const char*` 类型的键:
```c++
#include <iostream>
#include <map>
#include <string.h>
struct cmp {
bool operator()(const char* a, const char* b) const {
return strcmp(a, b) < 0;
}
};
int main() {
std::map<const char*, int, cmp> mp;
mp["hello"] = 1;
mp["world"] = 2;
auto it = mp.find("hello");
if (it != mp.end()) {
std::cout << it->second << std::endl; // 输出 1
}
return 0;
}
```
在上面的代码中,我们定义了一个结构体 `cmp`,其中重载了 `()` 运算符,用于比较两个 `const char*` 类型的键。我们在定义 `map` 时指定了这个比较函数,这样 `map` 就会使用我们自定义的比较函数来比较键的大小了。
阅读全文