考虑以下代码:
static constexpr QString FOO = QStringLiteral("foo"); // erro compile , because QString has not default destructor.
我如何在编译时创建QString!?有可能在编译时创建QString吗?
6rqinv9w1#
在Qt 6.2中,您可以使用新的u“my string”_qs语法。https://doc.qt.io/qt-6/qstring.html#operator-22-22_qs
oyjwcjzk2#
在Qt6之前,您可以用途:
Qt6
constexpr QStringView FOO = u"foo";
2条答案
按热度按时间6rqinv9w1#
在Qt 6.2中,您可以使用新的u“my string”_qs语法。https://doc.qt.io/qt-6/qstring.html#operator-22-22_qs
oyjwcjzk2#
在
Qt6
之前,您可以用途: