std::string与静态字符串比较
时间: 2024-04-01 15:29:09 浏览: 203
std::string是C++标准库中的一个类,用于字符串。它提供了一系列成员函数和操作符,可以方便地进行字符串的操作和处理。而静态字符串是指在编译时就确定了内容的字符串,通常使用字符数组表示。
std::string与静态字符串比较,有以下几个方面的区别:
1. 内存管理:std::string类会自动管理字符串的内存,无需手动分配和释放内存。而静态字符串需要手动定义字符数组,并且需要注意数组大小以避免越界。
2. 可变性:std::string对象是可变的,可以通过成员函数修改字符串的内容。而静态字符串是不可变的,一旦定义后就不能修改。
3. 字符串长度:std::string类提供了成员函数length()或size()来获取字符串的长度,方便获取字符串的实际长度。而静态字符串需要使用strlen()函数来获取长度。
4. 字符串操作:std::string类提供了丰富的成员函数和操作符,可以方便地进行字符串的拼接、查找、替换等操作。而静态字符串需要使用C语言的字符串处理函数来完成相应的操作。
5. 安全性:由于std::string类自动管理内存,可以避免缓冲区溢出等内存安全问题。而静态字符串需要手动控制内存大小,容易出现内存溢出或者访问越界的问题。
相关问题
std::string 和一个静态字符串比较
std::string是C++标准库中的一个类,用于表示字符串。它提供了一系列成员函数和操作符,可以方便地进行字符串的操作和处理。与静态字符串相比,std::string具有以下优点:
1. 动态内存管理:std::string可以根据需要自动分配和释放内存,而静态字符串需要手动管理内存。
2. 长度可变:std::string可以根据实际需要动态改变长度,而静态字符串的长度是固定的。
3. 字符串操作:std::string提供了丰富的成员函数和操作符,可以方便地进行字符串的拼接、查找、替换等操作,而静态字符串需要手动编写相应的代码来完成这些操作。
4. 安全性:std::string内部实现了对字符串的边界检查,可以避免缓冲区溢出等安全问题,而静态字符串容易导致缓冲区溢出。
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`类。
阅读全文