Qt::Literals Namespace
namespace Qt::LiteralsLiterals インライン名前空間は、Qt 型のリテラル演算子を宣言します。さらに...
| ヘッダー | #include <QString> |
| CMake の | find_package(Qt6 REQUIRED COMPONENTS Core)target_link_libraries(mytarget PRIVATE Qt6::Core) |
| qmake: | QT += core |
名前空間
| namespace | StringLiterals |
名前空間
namespace Literals::StringLiterals
inlineQt::Literals::StringLiterals 名前空間は、Qt 文字列型のリテラル演算子を宣言します。Literals とStringLiterals の両方の名前空間がインラインとして宣言されているため、以下のいずれかをコードに追加することで、この名前空間のシンボルにアクセスできます:
// Makes visible only the literal operators declared in StringLiterals using namespace Qt::StringLiterals; // same, but needlessly verbose: 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;
Qt がQt::Literals 内の異なる名前空間で競合する演算子を追加した場合に備えて、どのリテラル演算子を使用するか選択できないため、後者は推奨されません。
© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.