StringLiterals Namespace
Qt::Literals::StringLiteralsStringLiterals 네임스페이스는 Qt 유형에 대한 문자열 리터럴 연산자를 선언합니다. 더 보기...
Header: | #include <QString> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Core) target_link_libraries(mytarget PRIVATE Qt6::Core) |
qmake: | QT += core |
함수
(since 6.4) QLatin1Char | operator""_L1(char ch) |
(since 6.4) QLatin1StringView | operator""_L1(const char *str, size_t size) |
(since 6.4) QByteArray | operator""_ba(const char *str, size_t size) |
(since 6.4) QString | operator""_s(const char16_t *str, size_t size) |
자세한 설명
인라인 Qt::Literals::StringLiterals 네임스페이스는 Qt 형에 대한 문자열 리터럴 연산자를 선언합니다. Literals
및 StringLiterals
네임스페이스는 모두 인라인으로 선언되므로, 이 네임스페이스의 심볼은 코드에 다음 중 하나를 추가하여 액세스할 수 있습니다:
// 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;
함수 문서
[constexpr noexcept, since 6.4]
QLatin1Char operator""_L1(char ch)
ch 에서 QLatin1Char 를 생성하는 리터럴 연산자입니다.
다음 코드는 QLatin1Char 를 생성합니다:
using namespace Qt::Literals::StringLiterals; auto ch = 'a'_L1;
이 함수는 Qt 6.4에 도입되었습니다.
Qt::Literals::StringLiterals 를참조하십시오 .
[constexpr noexcept, since 6.4]
QLatin1StringView operator""_L1(const char *str, size_t size)
문자 문자열 리터럴 str 의 첫 번째 size 문자로 QLatin1StringView 을 생성하는 리터럴 연산자입니다.
다음 코드는 QLatin1StringView 를 생성합니다:
using namespace Qt::Literals::StringLiterals; auto str = "hello"_L1;
이 함수는 Qt 6.4에 도입되었습니다.
Qt::Literals::StringLiterals 를참조하십시오 .
[noexcept, since 6.4]
QByteArray operator""_ba(const char *str, size_t size)
문자 문자열 리터럴 str 의 첫 번째 size 문자로 QByteArray 을 생성하는 리터럴 연산자입니다.
QByteArray 은 컴파일 시 생성되며, 생성된 문자열 데이터는 컴파일된 객체 파일의 읽기 전용 세그먼트에 저장됩니다. 중복 리터럴은 동일한 읽기 전용 메모리를 공유할 수 있습니다. 이 기능은 QByteArrayLiteral 와 호환되지만 코드에 많은 문자열 리터럴이 있을 때 타이핑을 절약할 수 있습니다.
다음 코드는 QByteArray 을 생성합니다:
using namespace Qt::Literals::StringLiterals; auto str = "hello"_ba;
이 함수는 Qt 6.4에 도입되었습니다.
Qt::Literals::StringLiterals 를참조하십시오 .
[noexcept, since 6.4]
QString operator""_s(const char16_t *str, size_t size)
char16_t 문자열 리터럴 str 의 첫 번째 size 문자로 QString 을 생성하는 리터럴 연산자입니다.
QString 은 컴파일 시 생성되며, 생성된 문자열 데이터는 컴파일된 객체 파일의 읽기 전용 세그먼트에 저장됩니다. 중복 리터럴은 동일한 읽기 전용 메모리를 공유할 수 있습니다. 이 기능은 QStringLiteral 와 호환되지만 코드에 많은 문자열 리터럴이 있을 때 타이핑을 절약할 수 있습니다.
다음 코드는 QString 을 생성합니다:
using namespace Qt::Literals::StringLiterals; auto str = u"hello"_s;
이 함수는 Qt 6.4에 도입되었습니다.
Qt::Literals::StringLiterals 를참조하십시오 .
© 2025 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.