以下成员源于类 QStringView 被弃用。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(弃用)
QStringView
|
left (qsizetype length ) const |
(弃用)
QStringView
|
mid (qsizetype start , qsizetype length = -1) const |
(弃用)
QStringView
|
right (qsizetype length ) const |
[constexpr]
QStringView
QStringView::
left
(
qsizetype
length
) const
This function is deprecated. We strongly advise against using it in new code.
使用 first () 取而代之在新代码中。
返回子字符串长度 length starting at position 0 in this object.
The entire string view is returned if length >= size (),或小于 0。
另请参阅 first (), last (), sliced (), startsWith (), chopped (), chop (),和 truncate ().
[constexpr]
QStringView
QStringView::
mid
(
qsizetype
start
,
qsizetype
length
= -1) const
This function is deprecated. We strongly advise against using it in new code.
返回子字符串长度 length 起始于位置 start 在此对象。
使用 sliced () 取而代之在新代码中。
Returns an empty string view if start exceeds the length of the string view. If there are less than length characters available in the string view starting at start ,或者若 length is negative (default), the function returns all characters that are available from start .
另请参阅 first (), last (), sliced (), chopped (), chop (),和 truncate ().
[constexpr]
QStringView
QStringView::
right
(
qsizetype
length
) const
This function is deprecated. We strongly advise against using it in new code.
使用 last () 取而代之在新代码中。
返回子字符串长度 length 起始于位置 size () - length 在此对象。
The entire string view is returned if length >= size (),或小于 0。
另请参阅 first (), last (), sliced (), endsWith (), chopped (), chop (),和 truncate ().