QAnyStringView Class▲
-
Header: QAnyStringView
-
Since: Qt 6.0
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Core)
target_link_libraries(mytarget PRIVATE Qt6::Core)
-
qmake: QT += core
-
Group: QAnyStringView is part of tools, string-processing
Detailed Description▲
A QAnyStringView references a contiguous portion of a string it does not own. It acts as an interface type to all kinds of strings, without the need to construct a QString first.
Unlike QStringView and QUtf8StringView, QAnyStringView can hold strings of any of the following encodings: UTF-8, UTF-16, and Latin-1. The latter is supported to keep old source working efficiently. It is expected that by Qt 7, the Latin-1 support will be removed.
The string may be represented as an array (or an array-compatible data-structure such as QString, std::basic_string, etc.) of char, char8_t, QChar, ushort, char16_t or (on platforms, such as Windows, where it is a 16-bit type) wchar_t.
QAnyStringView is designed as an interface type; its main use-case is as a function parameter type. When QAnyStringViews are used as automatic variables or data members, care must be taken to ensure that the referenced string data (for example, owned by a QString) outlives the QAnyStringView on all code paths, lest the string view ends up referencing deleted data.
When used as an interface type, QAnyStringView allows a single function to accept a wide variety of string data sources. One function accepting QAnyStringView thus replaces five function overloads (taking QString, (const QChar*, int), QUtf8StringView, QLatin1String (but see above), and QChar), while at the same time enabling even more string data sources to be passed to the function, such as u8"Hello World", a char8_t string literal.
Like elsewhere in Qt, QAnyStringView assumes char data is encoded in UTF-8, unless it is presented as a QLatin1String.
QAnyStringViews should be passed by value, not by reference-to-const:
void
myfun1(QAnyStringView sv); // preferred
void
myfun2(const
QAnyStringView &
amp;sv); // compiles and works, but slower
QAnyStringView can also be used as the return value of a function, but this is not recommended. QUtf8StringView or QStringView are better suited as function return values. If you call a function returning QAnyStringView, take extra care to not keep the QAnyStringView around longer than the function promises to keep the referenced string data alive. If in doubt, obtain a strong reference to the data by calling toString() to convert the QAnyStringView into a QString.
QAnyStringView is a Literal Type.
Compatible Character Types▲
QAnyStringView accepts strings over a variety of character types:
-
char (both signed and unsigned)
-
char8_t (C++20 only)
-
char16_t
-
wchar_t (where it's a 16-bit type, e.g. Windows)
-
ushort
-
QChar
The 8-bit character types are interpreted as UTF-8 data (except when presented as a QLatin1String) while the 16-bit character types are interpreted as UTF-16 data in host byte order (the same as QString).
Sizes and Sub-Strings▲
All sizes and positions in QAnyStringView functions are in the encoding's code points (that is, UTF-16 surrogate pairs count as two for the purposes of these functions, the same as in QString, and UTF-8 multibyte sequences count as two, three or four, depending on their length).
See Also▲
See also QUtf8StringView, QStringView
Member Type Documentation▲
QAnyStringView::difference_type▲
Alias for std::ptrdiff_t. Provided for compatibility with the STL.
QAnyStringView::size_type▲
Alias for qsizetype. Provided for compatibility with the STL.
Member Function Documentation▲
[constexpr] QAnyStringView::QAnyStringView()▲
[constexpr] QAnyStringView::QAnyStringView(std::nullptr_t)▲
[constexpr] QAnyStringView::QAnyStringView(const Char *str, qsizetype len)▲
Constructs a string view on str with length len.
The range [str,len) must remain valid for the lifetime of this string view object.
Passing nullptr as str is safe if len is 0, too, and results in a null string view.
The behavior is undefined if len is negative or, when positive, if str is nullptr.
This constructor only participates in overload resolution if Char is a compatible character type.
See Also▲
See also isNull(), Compatible Character Types
[constexpr] QAnyStringView::QAnyStringView(const Char *first, const Char *last)▲
Constructs a string view on first with length (last - first).
The range [first,last) must remain valid for the lifetime of this string view object.
Passing \nullptr as first is safe if last is nullptr, too, and results in a null string view.
The behavior is undefined if last precedes first, or first is nullptr and last is not.
This constructor only participates in overload resolution if Char is a compatible character type.
See Also▲
See also isNull(), Compatible Character Types
[constexpr] QAnyStringView::QAnyStringView(const Char (&)[N] string = N)▲
Constructs a string view on the character string literal string. The view covers the array until the first Char(0) is encountered, or N, whichever comes first. If you need the full array, use fromArray() instead.
string must remain valid for the lifetime of this string view object.
This constructor only participates in overload resolution if string is an actual array and Char is a compatible character type.
See Also▲
See also Compatible Character Types
[constexpr] QAnyStringView::QAnyStringView(const Char *str)▲
Constructs a string view on str. The length is determined by scanning for the first Char(0).
str must remain valid for the lifetime of this string view object.
Passing nullptr as str is safe and results in a null string view.
This constructor only participates in overload resolution if str is not an array and if Char is a compatible character type.
See Also▲
See also isNull(), Compatible Character Types
QAnyStringView::QAnyStringView(const QByteArray &str)▲
Constructs a string view on str. The data in str is interpreted as UTF-8.
str.data() must remain valid for the lifetime of this string view object.
The string view will be null if and only if str.isNull().
QAnyStringView::QAnyStringView(const QString &str)▲
Constructs a string view on str.
str.data() must remain valid for the lifetime of this string view object.
The string view will be null if and only if str.isNull().
[constexpr] QChar QAnyStringView::back() const▲
Returns the last character in the string.
This function is provided for STL compatibility.
Calling this function on an empty string view constitutes undefined behavior.
See Also▲
See also front(), Sizes and Sub-Strings
[static] int QAnyStringView::compare(QAnyStringView lhs, QAnyStringView rhs, Qt::CaseSensitivity cs = Qt::CaseSensitive)▲
Returns an integer that compares to zero as lhs compares to rhs.
If cs is Qt::CaseSensitive (the default), the comparison is case sensitive; otherwise the comparison is case-insensitive.
See Also▲
See also operator==(), operator<(), operator>()
[constexpr] const void *QAnyStringView::data() const▲
Returns a const pointer to the first character in the string.
The character array represented by the return value is not null-terminated.
See Also▲
See also size_bytes()
[constexpr] bool QAnyStringView::empty() const▲
Returns whether this string view is empty - that is, whether size() == 0.
This function is provided for STL compatibility.
See Also▲
[constexpr] QChar QAnyStringView::front() const▲
Returns the first character in the string.
This function is provided for STL compatibility.
Calling this function on an empty string view constitutes undefined behavior.
See Also▲
See also back(), Sizes and Sub-Strings
[constexpr] bool QAnyStringView::isEmpty() const▲
Returns whether this string view is empty - that is, whether size() == 0.
This function is provided for compatibility with other Qt containers.
See Also▲
[constexpr] bool QAnyStringView::isNull() const▲
Returns whether this string view is null - that is, whether data() == nullptr.
This functions is provided for compatibility with other Qt containers.
See Also▲
[constexpr] qsizetype QAnyStringView::size() const▲
Returns the size of this string view, in the encoding's code points.
See Also▲
See also empty(), isEmpty(), isNull(), size_bytes(), Sizes and Sub-Strings
[constexpr] qsizetype QAnyStringView::size_bytes() const▲
Returns the size of this string view, but in bytes, not code-points.
You can use this function together with data() for hashing or serialization.
This function is provided for STL compatibility.
See Also▲
QString QAnyStringView::toString() const▲
Related Non-Members▲
bool operator!=(QAnyStringView lhs, QAnyStringView rhs)▲
bool operator<(QAnyStringView lhs, QAnyStringView rhs)
bool operator<=(QAnyStringView lhs, QAnyStringView rhs)
bool operator==(QAnyStringView lhs, QAnyStringView rhs)
bool operator>(QAnyStringView lhs, QAnyStringView rhs)
bool operator>=(QAnyStringView lhs, QAnyStringView rhs)
Operators that compare lhs to rhs.
See Also▲
See also compare()
Obsolete Members for QAnyStringView▲
The following members of class QAnyStringView are deprecated. We strongly advise against using them in new code.
Obsolete Member Function Documentation▲
[constexpr] int QAnyStringView::length() const▲
This function is deprecated. We strongly advise against using it in new code.
Use size() instead, and port callers to qsizetype.
Same as size(), except that it returns the result as an int.
This function is provided for compatibility with other Qt containers.
QAnyStringView can represent strings with more than 231 characters. Calling this function on a string view for which size() returns a value greater than INT_MAX constitutes undefined behavior.
See Also▲
See also size()