亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qstring.h

?? QT 開發環境里面一個很重要的文件
?? H
?? 第 1 頁 / 共 3 頁
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QSTRING_H#define QSTRING_H#include <QtCore/qchar.h>#include <QtCore/qbytearray.h>#include <QtCore/qatomic.h>#include <QtCore/qnamespace.h>#ifdef QT_INCLUDE_COMPAT#include <Qt3Support/q3cstring.h>#endif#ifndef QT_NO_STL#  if defined (Q_CC_MSVC_NET) && _MSC_VER < 1310 // Avoids nasty warning for xlocale, line 450#    pragma warning (push)#    pragma warning (disable : 4189)#    include <string>#    pragma warning (pop)#  else#    include <string>#  endif#  ifndef QT_NO_STL_WCHAR// workaround for some headers not typedef'ing std::wstringtypedef std::basic_string<wchar_t> QStdWString;#  endif // QT_NO_STL_WCHAR#endif // QT_NO_STL#include <stdarg.h>#ifdef truncate#error qstring.h must be included before any header file that defines truncate#endifQT_BEGIN_HEADERQT_MODULE(Core)class QCharRef;class QRegExp;class QStringList;class QTextCodec;class QLatin1String;template <typename T> class QVector;class Q_CORE_EXPORT QString{public:    inline QString();    QString(const QChar *unicode, int size);    QString(QChar c);    QString(int size, QChar c);    inline QString(const QLatin1String &latin1);    inline QString(const QString &);    inline ~QString();    QString &operator=(QChar c);    QString &operator=(const QString &);    inline QString &operator=(const QLatin1String &);    inline int size() const { return d->size; }    inline int count() const { return d->size; }    inline int length() const;    inline bool isEmpty() const;    void resize(int size);    QString &fill(QChar c, int size = -1);    void truncate(int pos);    void chop(int n);    int capacity() const;    inline void reserve(int size);    inline void squeeze() { if (d->size < d->alloc) realloc(); }    inline const QChar *unicode() const;    inline QChar *data();    inline const QChar *data() const;    inline const QChar *constData() const;    inline void detach();    inline bool isDetached() const;    void clear();    inline const QChar at(int i) const;    const QChar operator[](int i) const;    QCharRef operator[](int i);    const QChar operator[](uint i) const;    QCharRef operator[](uint i);    QString arg(qlonglong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(qulonglong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(long a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(ulong a, int fieldwidth=0, int base=10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(int a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(uint a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(short a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(ushort a, int fieldWidth = 0, int base = 10,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(double a, int fieldWidth = 0, char fmt = 'g', int prec = -1,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(char a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(QChar a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(const QString &a, int fieldWidth = 0,                const QChar &fillChar = QLatin1Char(' ')) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2, const QString &a3) const Q_REQUIRED_RESULT;    QString arg(const QString &a1, const QString &a2, const QString &a3,                const QString &a4) const Q_REQUIRED_RESULT;    QString    &vsprintf(const char *format, va_list ap);    QString    &sprintf(const char *format, ...)#if defined(Q_CC_GNU) && !defined(__INSURE__)        __attribute__ ((format (printf, 2, 3)))#endif        ;    int indexOf(QChar c, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int indexOf(const QString &s, int from = 0, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int lastIndexOf(QChar c, int from = -1, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int lastIndexOf(const QString &s, int from = -1, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    inline QBool contains(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    inline QBool contains(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int count(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    int count(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;#ifndef QT_NO_REGEXP    int indexOf(const QRegExp &, int from = 0) const;    int lastIndexOf(const QRegExp &, int from = -1) const;    inline QBool contains(const QRegExp &rx) const { return QBool(indexOf(rx) != -1); }    int count(const QRegExp &) const;#endif    enum SectionFlag {        SectionDefault             = 0x00,        SectionSkipEmpty           = 0x01,        SectionIncludeLeadingSep   = 0x02,        SectionIncludeTrailingSep  = 0x04,        SectionCaseInsensitiveSeps = 0x08    };    Q_DECLARE_FLAGS(SectionFlags, SectionFlag)    QString section(QChar sep, int start, int end = -1, SectionFlags flags = SectionDefault) const;    QString section(const QString &in_sep, int start, int end = -1, SectionFlags flags = SectionDefault) const;#ifndef QT_NO_REGEXP    QString section(const QRegExp &reg, int start, int end = -1, SectionFlags flags = SectionDefault) const;#endif    QString left(int len) const Q_REQUIRED_RESULT;    QString right(int len) const Q_REQUIRED_RESULT;    QString mid(int i, int len = -1) const Q_REQUIRED_RESULT;    bool startsWith(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool startsWith(const QLatin1String &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool startsWith(const QChar &c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QLatin1String &s, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    bool endsWith(const QChar &c, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    QString leftJustified(int width, QChar fill = QLatin1Char(' '), bool trunc = false) const Q_REQUIRED_RESULT;    QString rightJustified(int width, QChar fill = QLatin1Char(' '), bool trunc = false) const Q_REQUIRED_RESULT;    QString toLower() const Q_REQUIRED_RESULT;    QString toUpper() const Q_REQUIRED_RESULT;    QString trimmed() const Q_REQUIRED_RESULT;    QString simplified() const Q_REQUIRED_RESULT;    QString &insert(int i, QChar c);    QString &insert(int i, const QChar *uc, int len);    inline QString &insert(int i, const QString &s) { return insert(i, s.constData(), s.length()); }    QString &insert(int i, const QLatin1String &s);    QString &append(QChar c);    QString &append(const QString &s);    QString &append(const QLatin1String &s);    inline QString &prepend(QChar c) { return insert(0, c); }    inline QString &prepend(const QString &s) { return insert(0, s); }    inline QString &prepend(const QLatin1String &s) { return insert(0, s); }    inline QString &operator+=(QChar c) { return append(c); }    inline QString &operator+=(QChar::SpecialCharacter c) { return append(QChar(c)); }    inline QString &operator+=(const QString &s) { return append(s); }    inline QString &operator+=(const QLatin1String &s) { return append(s); }    QString &remove(int i, int len);    QString &remove(QChar c, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &remove(const QString &s, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(int i, int len, QChar after);    QString &replace(int i, int len, const QChar *s, int slen);    QString &replace(int i, int len, const QString &after);    QString &replace(QChar before, QChar after, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(QChar c, const QString &after, Qt::CaseSensitivity cs = Qt::CaseSensitive);    QString &replace(const QString &before, const QString &after,                     Qt::CaseSensitivity cs = Qt::CaseSensitive);#ifndef QT_NO_REGEXP    QString &replace(const QRegExp &rx, const QString &after);    inline QString &remove(const QRegExp &rx)    { return replace(rx, QString()); }#endif    enum SplitBehavior { KeepEmptyParts, SkipEmptyParts };    QStringList split(const QString &sep, SplitBehavior behavior = KeepEmptyParts,                      Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;    QStringList split(const QChar &sep, SplitBehavior behavior = KeepEmptyParts,                      Qt::CaseSensitivity cs = Qt::CaseSensitive) const Q_REQUIRED_RESULT;#ifndef QT_NO_REGEXP    QStringList split(const QRegExp &sep, SplitBehavior behavior = KeepEmptyParts) const Q_REQUIRED_RESULT;#endif    enum NormalizationForm {        NormalizationForm_D,        NormalizationForm_C,        NormalizationForm_KD,        NormalizationForm_KC    };    QString normalized(NormalizationForm mode) const Q_REQUIRED_RESULT;    QString normalized(NormalizationForm mode, QChar::UnicodeVersion version) const Q_REQUIRED_RESULT;    const ushort *utf16() const;    QByteArray toAscii() const Q_REQUIRED_RESULT;    QByteArray toLatin1() const Q_REQUIRED_RESULT;    QByteArray toUtf8() const Q_REQUIRED_RESULT;    QByteArray toLocal8Bit() const Q_REQUIRED_RESULT;    QVector<uint> toUcs4() const Q_REQUIRED_RESULT;    static QString fromAscii(const char *, int size = -1);    static QString fromLatin1(const char *, int size = -1);    static QString fromUtf8(const char *, int size = -1);    static QString fromLocal8Bit(const char *, int size = -1);    static QString fromUtf16(const ushort *, int size = -1);    static QString fromUcs4(const uint *, int size = -1);    static QString fromRawData(const QChar *, int size);    int toWCharArray(wchar_t *array) const;    static QString fromWCharArray(const wchar_t *, int size = -1);    QString &setUnicode(const QChar *unicode, int size);    inline QString &setUtf16(const ushort *utf16, int size);    // ### Qt 5: merge these two functions    int compare(const QString &s) const;    int compare(const QString &s, Qt::CaseSensitivity cs) const;    int compare(const QLatin1String &other, Qt::CaseSensitivity cs = Qt::CaseSensitive) const;    // ### Qt 5: merge these two functions    static inline int compare(const QString &s1, const QString &s2)    { return s1.compare(s2); }    static inline int compare(const QString &s1, const QString &s2, Qt::CaseSensitivity cs)    { return s1.compare(s2, cs); }    static inline int compare(const QString& s1, const QLatin1String &s2,                              Qt::CaseSensitivity cs = Qt::CaseSensitive)    { return s1.compare(s2, cs); }    static inline int compare(const QLatin1String& s1, const QString &s2,                              Qt::CaseSensitivity cs = Qt::CaseSensitive)    { return -s2.compare(s1, cs); }    int localeAwareCompare(const QString& s) const;    static int localeAwareCompare(const QString& s1, const QString& s2)    { return s1.localeAwareCompare(s2); }    short  toShort(bool *ok=0, int base=10) const;    ushort toUShort(bool *ok=0, int base=10) const;    int toInt(bool *ok=0, int base=10) const;    uint toUInt(bool *ok=0, int base=10) const;    long toLong(bool *ok=0, int base=10) const;    ulong toULong(bool *ok=0, int base=10) const;    qlonglong toLongLong(bool *ok=0, int base=10) const;    qulonglong toULongLong(bool *ok=0, int base=10) const;    float toFloat(bool *ok=0) const;    double toDouble(bool *ok=0) const;    QString &setNum(short, int base=10);    QString &setNum(ushort, int base=10);    QString &setNum(int, int base=10);    QString &setNum(uint, int base=10);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
美女一区二区在线观看| 国产精品一区二区在线看| 精品国产污污免费网站入口| 92国产精品观看| 激情图区综合网| 亚洲第一狼人社区| 国产精品国产三级国产aⅴ原创| 欧美日韩免费一区二区三区视频| 高清国产一区二区三区| 人人爽香蕉精品| 亚洲国产裸拍裸体视频在线观看乱了| 国产午夜精品福利| 日韩欧美精品在线视频| 欧美日韩一本到| 日本道精品一区二区三区| 国产成人精品一区二区三区四区 | 欧美专区日韩专区| 国产一区视频网站| 秋霞电影网一区二区| 色悠悠亚洲一区二区| 韩国av一区二区三区四区| 日本aⅴ精品一区二区三区| 国产精品白丝在线| 成人一级黄色片| 精品在线一区二区| 日本不卡123| 日韩中文字幕亚洲一区二区va在线 | 国产成人免费视频| 国内外精品视频| 免费成人你懂的| 偷窥少妇高潮呻吟av久久免费| 亚洲日本免费电影| 亚洲欧洲制服丝袜| 亚洲女与黑人做爰| 亚洲美女电影在线| 亚洲人成伊人成综合网小说| 日韩一区在线看| 国产精品国产三级国产a | 国产欧美中文在线| 久久日一线二线三线suv| 欧美mv日韩mv国产网站app| 欧美一级理论性理论a| 5858s免费视频成人| 在线成人免费观看| 欧美一区在线视频| 精品国产欧美一区二区| www激情久久| 国产午夜精品福利| 1024亚洲合集| 亚洲无线码一区二区三区| 亚洲午夜久久久久久久久久久| 亚洲综合视频在线| 天堂蜜桃一区二区三区| 六月婷婷色综合| 国产福利一区二区三区视频| 成人综合婷婷国产精品久久| av影院午夜一区| 欧美在线色视频| 欧美一区二区视频在线观看2020| 日韩精品一区二区三区视频播放| 久久五月婷婷丁香社区| 中文字幕av一区二区三区高| 亚洲精品国产a| 免费日本视频一区| 国产高清久久久| 91视频.com| 91.com视频| 久久久精品国产免大香伊| 中文字幕在线不卡视频| 亚洲国产日韩精品| 激情小说亚洲一区| 色综合久久精品| 欧美一区2区视频在线观看| 久久久久亚洲综合| 亚洲精品久久嫩草网站秘色| 热久久国产精品| 成人中文字幕在线| 欧美日韩免费在线视频| 国产片一区二区| 亚洲免费色视频| 久久99在线观看| 91久久人澡人人添人人爽欧美| 制服丝袜亚洲网站| 国产精品久久久久9999吃药| 午夜精品一区在线观看| 成人午夜视频免费看| 欧美一区二区在线看| 国产视频一区不卡| 婷婷成人综合网| 成人动漫在线一区| 欧美电影精品一区二区| 亚洲欧美欧美一区二区三区| 韩国女主播成人在线| 在线看国产日韩| 国产日韩精品一区二区三区| 日韩经典一区二区| 一本到不卡精品视频在线观看| 精品人在线二区三区| 亚洲一线二线三线久久久| 福利电影一区二区三区| 91精品国产91久久综合桃花| 亚洲精品老司机| 懂色av一区二区夜夜嗨| 日韩欧美久久久| 亚洲在线成人精品| 成人av高清在线| 久久免费美女视频| 男女视频一区二区| 欧美日韩精品一区二区三区四区 | 国产欧美一区二区精品秋霞影院| 亚洲第一激情av| 99久久免费精品高清特色大片| 精品美女被调教视频大全网站| 一区2区3区在线看| 99re热这里只有精品视频| 26uuu色噜噜精品一区| 日韩精品91亚洲二区在线观看| 在线看国产一区| 亚洲精品乱码久久久久久黑人 | 成人激情黄色小说| 久久久久99精品国产片| 六月丁香综合在线视频| 91精品国产黑色紧身裤美女| 亚洲成人精品一区二区| 欧美在线观看视频一区二区三区| 国产精品久久久久久久久搜平片 | 婷婷六月综合亚洲| 欧美日韩精品是欧美日韩精品| 亚洲精品美腿丝袜| 色成年激情久久综合| 亚洲欧洲制服丝袜| 色视频欧美一区二区三区| 亚洲理论在线观看| 99精品桃花视频在线观看| 国产精品免费视频一区| av男人天堂一区| 成人免费一区二区三区视频| 99v久久综合狠狠综合久久| 日韩美女精品在线| 色网站国产精品| 一区二区三区高清在线| 欧美日韩国产首页| 日本aⅴ精品一区二区三区 | 亚洲精品水蜜桃| 日本道色综合久久| 午夜一区二区三区视频| 欧美精品久久99| 久久99最新地址| 国产欧美一区二区三区沐欲| 成人av小说网| 亚洲精品第1页| 欧美日韩高清在线播放| 日本午夜一本久久久综合| 精品毛片乱码1区2区3区| 国产成人免费9x9x人网站视频| 国产精品无码永久免费888| bt7086福利一区国产| 亚洲一区二区精品视频| 91精品国产91热久久久做人人| 久久精品免费观看| 欧美国产日韩在线观看| 色吊一区二区三区| 免费三级欧美电影| 国产精品丝袜久久久久久app| 色综合天天综合网天天狠天天| 午夜精品福利视频网站| 精品国产乱子伦一区| 成人免费视频app| 亚洲国产另类精品专区| 精品日韩在线观看| av在线不卡电影| 人人超碰91尤物精品国产| 国产精品污www在线观看| 欧美三级欧美一级| 国产乱子轮精品视频| 亚洲精品高清在线观看| 精品久久久久久无| 91美女在线看| 久久国产欧美日韩精品| 成人欧美一区二区三区| 日韩一区二区在线观看视频| jizzjizzjizz欧美| 久久激情五月激情| 一区二区在线观看免费| 精品免费日韩av| 日本乱人伦aⅴ精品| 狠狠色狠狠色综合| 亚洲一区二区三区美女| 日本一区二区视频在线| 91精品欧美综合在线观看最新| 成人精品视频一区二区三区| 石原莉奈一区二区三区在线观看| 国产精品三级av在线播放| 欧美精品一卡两卡| 9人人澡人人爽人人精品| 精品一区二区三区免费播放| 亚洲精品成人悠悠色影视| xfplay精品久久| 91精品国产一区二区三区 | 91视频在线观看免费|