std::string s=“11111”;QString::fromStdString(s);程序崩溃什么原因
时间: 2023-05-18 15:03:46 浏览: 173
可能是因为字符串s中包含了无法转换为QString的字符,例如控制字符或非法字符。此外,还可能是因为QString的编码方式与std::string不同,导致转换失败。建议检查字符串s中的字符是否合法,并尝试使用其他方法进行转换。
相关问题
#include "movie.h" #include <QString> #include <fstream> using std::string; //创建电影类 Movie::Movie() {} Movie::Movie(string name, string director, string actor, string time) { this->name = name;//电影名称 this->director = director;//导演 this->actor = actor;//演员 this->time = time;//上映时间 } //搜索匹配关键字 auto Movie::isMatched(string name, string director, string actor, string time) -> bool { bool ret = true; if (this->name.find(name) == string::npos) ret = false; if (this->actor.find(actor) == string::npos) ret = false; if (this->director.find(director) == string::npos) ret = false; if (this->time.find(time) == string::npos) ret = false; return ret; } //把电影对象转化成字符串 auto Movie::toString() const -> string { char buffer[1024]; sprintf(buffer, "%30s%30s%30s%30s", this->name.c_str(), this->director.c_str(), this->actor.c_str(), this->time.c_str()); return string(buffer); } //重载输入流运算符,将数据从文件中读取 auto operator>>(std::ifstream& is, Movie& m) -> std::ifstream& { is >> m.name >> m.director >> m.actor >> m.time; return is; } //重载输入流运算符,将数据写入文件中 auto operator<<(std::ofstream& os, const Movie& m) -> std::ofstream& { os << m.toString(); return os; } auto Movie::toQStringList() const -> QStringList { QStringList ret; ret.append(QString::fromStdString(this->name)); ret.append(QString::fromStdString(this->director)); ret.append(QString::fromStdString(this->actor)); ret.append(QString::fromStdString(this->time)); return ret; } auto Movie::operator==(const Movie& another) -> bool { if (another.name != this->name && another.name != "*") return false; if (another.director != this->director && another.director != "*") return false; if (another.actor != this->actor && another.actor != "*") return false; if (another.time != this->time && another.time != "*") return false; return true; } 什么意思
这段代码定义了一个电影类 `Movie`,包含电影名称、导演、演员、上映时间等信息,并提供了一些方法来操作这些信息。
具体来说:
- 构造函数 `Movie::Movie()` 和 `Movie::Movie(string name, string director, string actor, string time)` 用于创建电影对象,可以传入电影名称、导演、演员、上映时间等信息。
- 方法 `Movie::isMatched(string name, string director, string actor, string time)` 用于判断电影对象是否匹配给定的关键字,即电影名称、导演、演员、上映时间是否包含给定的字符串。
- 方法 `Movie::toString() const` 将电影对象转化成字符串。
- 运算符重载 `operator>>` 和 `operator<<` 用于将电影对象从文件中读取和写入文件中。
- 方法 `Movie::toQStringList() const` 将电影对象转化成 `QStringList`,用于在 Qt 的界面中显示电影信息。
- 运算符重载 `operator==` 用于比较两个电影对象是否相等,即电影名称、导演、演员、上映时间是否相等。其中,如果电影名称、导演、演员、上映时间有一个不匹配,则返回 false。如果其中一个属性值为 "*",则表示该属性不进行比较,即忽略该属性。
/ 重载流运算符 friend std::ostream& operator<<(std::ostream& os, const IM_Image& params) { // 序列化各个字段 os << params.image << std::endl;; QList<QString> keys = params.TransformationMatrix.keys(); QList<cv::Mat> values = params.TransformationMatrix.values(); for (size_t i = 0; i < keys.size(); i++) { os << keys[i].toStdString() << std::endl;; // 将QString转为std::string后输出 os << values[i] << std::endl; // 直接输出cv::Mat对象 } os << params.Barcode.toStdString() << std::endl; os << params.ID << std::endl; } friend std::istream& operator>>(std::istream& is, IM_Image& params) { }
这段代码中,是IM_Image类中重载的另一个流运算符,用于将流is中的数据反序列化为IM_Image对象params。具体实现方法是,依次从流中读取各个字段的值,并赋值给params中对应的成员变量。
对于image成员变量,可以直接从流中读取cv::Mat对象,代码如下:
```
is >> params.image;
```
对于TransformationMatrix成员变量,需要逐行读取流中的数据,将每一行按照特定的分隔符(如逗号)分成两部分,分别作为key和value添加到QMap对象中。具体代码如下:
```
QMap<QString, cv::Mat> TransformationMatrix;
while(!is.eof()) {
std::string line;
std::getline(is, line); // 逐行读取数据
if(line.empty()) {
continue;
}
std::istringstream iss(line);
std::string key;
std::getline(iss, key, ','); // 以逗号为分隔符,分离出key
cv::Mat value;
iss >> value; // 直接从流中读取cv::Mat对象
TransformationMatrix.insert(key.c_str(), value); // 将key-value添加到QMap中
}
params.TransformationMatrix = TransformationMatrix; // 将得到的QMap赋值给params中的成员变量
```
对于Barcode和ID成员变量,可以直接从流中读取其值,并赋值给params中对应的成员变量,代码如下:
```
std::string barcode;
std::getline(is, barcode);
params.Barcode = QString::fromStdString(barcode);
is >> params.ID;
```
上述代码中,对于Barcode成员变量,需要将std::string类型的值转为QString类型。因此使用了QString::fromStdString()函数。
阅读全文