Literals Namespace

Qt::Literals

Literals インライン名前空間は、Qt 型のリテラル演算子を宣言します。詳細...

Header: #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 型の文字列リテラル演算子を宣言します。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;

本ドキュメントに含まれる文書の著作権は、それぞれの所有者に帰属します。 本書で提供されるドキュメントは、Free Software Foundation が発行したGNU Free Documentation License version 1.3に基づいてライセンスされています。 Qtおよびそれぞれのロゴは、フィンランドおよびその他の国におけるThe Qt Company Ltd.の 商標です。その他すべての商標は、それぞれの所有者に帰属します。