字面量命名空间

Qt::Literals

字面量内联命名空间为Qt类型声明字面量运算符。更多信息...

头文件 #include <QString>
CMakefind_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
qmakeQT += core

命名空间

命名空间字符串字面量

详细描述

命名空间

命名空间 Literals::StringLiterals

内联 Qt::Literals::StringLiterals 命名空间为Qt类型声明字符串字面量运算符。由于 LiteralsStringLiterals 命名空间都被声明为内联,因此可以从代码中通过添加以下之一来访问该命名空间中的符号

// Makes visible only the literal operators declared in StringLiterals
using namespace Qt::Literals::StringLiterals;

// Makes visible literal operators declared in all inline namespaces
// inside Literals
using namespace Qt::Literals;

// Makes visible all symbols (including all literal operators) declared
// in the Qt namespace
using namespace Qt;

© 2024 Qt公司。本文件中包含的文档贡献是其各自所有者的版权。本文件中提供的文档是根据自由软件基金会的GNU自由文档许可证版本1.3的条款许可的。Qt及其相应标志是芬兰及其它全球国家的注册商标。所有其他商标均为其各自所有者的财产。