qt string转bool
时间: 2023-08-22 17:13:06 浏览: 443
qt 类型转换
在 Qt 中,可以使用 `QVariant` 类型来进行类型转换。将 `QString` 转换为 `bool` 类型,可以使用 `QVariant::toBool()` 方法。
例如:
```cpp
QString str = "true";
bool b = QVariant(str).toBool();
```
这里将 `str` 转换为 `QVariant` 类型,然后调用 `toBool()` 方法将其转换为 `bool` 类型,并将结果赋值给 `b` 变量。
阅读全文