⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qvaluelist-h.html

📁 qtopiaphone英文帮助,用于初学者和开发人员,初学者可以用来学习,开发人员可以用来资料查询.
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Qt Toolkit - qvaluelist.h include file</title><style type="text/css"><!--h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }a:link { color: #004faf; text-decoration: none }a:visited { color: #672967; text-decoration: none }body { background: white; color: black; }--></style></head><body bgcolor="#ffffff"><table width="100%"><tr><td><a href="index.html"><img width="100" height="100" src="qtlogo.png"alt="Home" border="0"><img width="100"height="100" src="face.png" alt="Home" border="0"></a><td valign="top"><div align="right"><img src="dochead.png" width="472" height="27"><br><a href="classes.html"><b>Classes</b></a>- <a href="annotated.html">Annotated</a>- <a href="hierarchy.html">Tree</a>- <a href="functions.html">Functions</a>- <a href="index.html">Home</a>- <a href="topicals.html"><b>Structure</b>  <font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" align="center" size=32>Qte</font></a></div></table><h1 align=center>qvaluelist.h</h1><br clear="all">This is the verbatim text of the qvaluelist.h include file.  It isprovided only for illustration; the copyrightremains with Trolltech.<hr><pre>/****************************************************************************** &#36;Id&#58; qt/src/tools/qvaluelist.h   2.3.8   edited 2004-05-12 $**** Definition of QValueList class**** Created : 990406**** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.**** This file is part of the tools module of the Qt GUI Toolkit.**** This file may be distributed under the terms of the Q Public License** as defined by Trolltech AS of Norway and appearing in the file** LICENSE.QPL included in the packaging of this file.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition** licenses may use this file in accordance with the Qt Commercial License** Agreement provided with the Software.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for**   information about Qt Commercial License Agreements.** See http://www.trolltech.com/qpl/ for QPL licensing information.** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#ifndef QVALUELIST_H#define QVALUELIST_H#ifndef QT_H#include "qshared.h"#include "qdatastream.h"#endif // QT_H#if defined(_CC_MSVC_)#pragma warning(disable:4284) // "return type for operator -&gt; is not a UDT"#endiftemplate &lt;class T&gt;class Q_EXPORT QValueListNode{public:    QValueListNode( const T&amp; t ) : data( t ) { }    QValueListNode() { }#if defined(Q_TEMPLATEDLL)    // Workaround MS bug in memory de/allocation in DLL vs. EXE     virtual ~QValueListNode() { }#endif    QValueListNode&lt;T&gt;* next;    QValueListNode&lt;T&gt;* prev;    T data;};template&lt;class T&gt;class Q_EXPORT <a href="qvaluelistiterator.html">QValueListIterator</a>{ public:    /**     * Typedefs     */    typedef QValueListNode&lt;T&gt;* NodePtr;    /**     * Variables     */    NodePtr node;    /**     * Functions     */    QValueListIterator() : node( 0 ) {}    QValueListIterator( NodePtr p ) : node( p ) {}    QValueListIterator( const QValueListIterator&lt;T&gt;&amp; it ) : node( it.node ) {}    bool operator==( const QValueListIterator&lt;T&gt;&amp; it ) const { return node == it.node; }    bool operator!=( const QValueListIterator&lt;T&gt;&amp; it ) const { return node != it.node; }    const T&amp; operator*() const { return node-&gt;data; }    T&amp; operator*() { return node-&gt;data; }    // Compilers are too dumb to understand this for QValueList&lt;int&gt;    //T* operator-&gt;() const { return &amp;(node-&gt;data); }    QValueListIterator&lt;T&gt;&amp; operator++() {        node = node-&gt;next;        return *this;    }    QValueListIterator&lt;T&gt; operator++(int) {        QValueListIterator&lt;T&gt; tmp = *this;        node = node-&gt;next;        return tmp;    }    QValueListIterator&lt;T&gt;&amp; operator--() {        node = node-&gt;prev;        return *this;    }    QValueListIterator&lt;T&gt; operator--(int) {        QValueListIterator&lt;T&gt; tmp = *this;        node = node-&gt;prev;        return tmp;    }};template&lt;class T&gt;class Q_EXPORT <a href="qvaluelistconstiterator.html">QValueListConstIterator</a>{ public:    /**     * Typedefs     */    typedef QValueListNode&lt;T&gt;* NodePtr;    /**     * Variables     */    NodePtr node;    /**     * Functions     */    QValueListConstIterator() : node( 0 ) {}    QValueListConstIterator( NodePtr p ) : node( p ) {}    QValueListConstIterator( const QValueListConstIterator&lt;T&gt;&amp; it ) : node( it.node ) {}    QValueListConstIterator( const QValueListIterator&lt;T&gt;&amp; it ) : node( it.node ) {}    bool operator==( const QValueListConstIterator&lt;T&gt;&amp; it ) const { return node == it.node; }    bool operator!=( const QValueListConstIterator&lt;T&gt;&amp; it ) const { return node != it.node; }    const T&amp; operator*() const { return node-&gt;data; }    // Compilers are too dumb to understand this for QValueList&lt;int&gt;    //const T* operator-&gt;() const { return &amp;(node-&gt;data); }    QValueListConstIterator&lt;T&gt;&amp; operator++() {        node = node-&gt;next;        return *this;    }    QValueListConstIterator&lt;T&gt; operator++(int) {        QValueListConstIterator&lt;T&gt; tmp = *this;        node = node-&gt;next;        return tmp;    }    QValueListConstIterator&lt;T&gt;&amp; operator--() {        node = node-&gt;prev;        return *this;    }    QValueListConstIterator&lt;T&gt; operator--(int) {        QValueListConstIterator&lt;T&gt; tmp = *this;        node = node-&gt;prev;        return tmp;    }};template &lt;class T&gt;class Q_EXPORT QValueListPrivate : public <a href="qshared.html">QShared</a>{public:    /**     * Typedefs     */    typedef QValueListIterator&lt;T&gt; Iterator;    typedef QValueListConstIterator&lt;T&gt; ConstIterator;    typedef QValueListNode&lt;T&gt; Node;    typedef QValueListNode&lt;T&gt;* NodePtr;    /**     * Functions     */    QValueListPrivate() { node = new Node; node-&gt;next = node-&gt;prev = node; nodes = 0; }    QValueListPrivate( const QValueListPrivate&lt;T&gt;&amp; _p ) : QShared() {        node = new Node; node-&gt;next = node-&gt;prev = node; nodes = 0;        Iterator b( _p.node-&gt;next );        Iterator e( _p.node );        Iterator i( node );        while( b != e )            insert( i, *b++ );    }    void derefAndDelete() // ### hack to get around hp-cc brain damage    {        if ( deref() )            delete this;    }#if defined(Q_TEMPLATEDLL)    // Workaround MS bug in memory de/allocation in DLL vs. EXE     virtual#endif    ~QValueListPrivate() {        NodePtr p = node-&gt;next;        while( p != node ) {            NodePtr x = p-&gt;next;            delete p;            p = x;        }        delete node;    }    Iterator insert( Iterator it, const T&amp; x ) {        NodePtr p = new Node( x );        p-&gt;next = it.node;        p-&gt;prev = it.node-&gt;prev;        it.node-&gt;prev-&gt;next = p;        it.node-&gt;prev = p;        nodes++;        return p;    }    Iterator remove( Iterator it ) {        ASSERT ( it.node != node );        NodePtr next = it.node-&gt;next;        NodePtr prev = it.node-&gt;prev;        prev-&gt;next = next;        next-&gt;prev = prev;        delete it.node;        nodes--;        return Iterator( next );    }    NodePtr find( NodePtr start, const T&amp; x ) const {        ConstIterator first( start );        ConstIterator last( node );        while( first != last) {            if ( *first == x )                return first.node;            ++first;        }        return last.node;    }    int findIndex( NodePtr start, const T&amp; x ) const {        ConstIterator first( start );        ConstIterator last( node );        int pos = 0;        while( first != last) {            if ( *first == x )                return pos;            ++first;            ++pos;        }        return -1;    }    uint contains( const T&amp; x ) const {        uint result = 0;        Iterator first = Iterator( node-&gt;next );        Iterator last = Iterator( node );        while( first != last) {            if ( *first == x )                ++result;            ++first;        }        return result;    }    void remove( const T&amp; x ) {        Iterator first = Iterator( node-&gt;next );        Iterator last = Iterator( node );        while( first != last) {            if ( *first == x )                first = remove( first );            else                ++first;        }    }    NodePtr at( uint i ) const {        ASSERT( i &lt;= nodes );        NodePtr p = node-&gt;next;        for( uint x = 0; x &lt; i; ++x )            p = p-&gt;next;        return p;    }    void clear() {        nodes = 0;        NodePtr p = node-&gt;next;        while( p != node ) {            NodePtr next = p-&gt;next;            delete p;            p = next;        }        node-&gt;next = node-&gt;prev = node;    }    NodePtr node;    uint nodes;};template &lt;class T&gt;class Q_EXPORT <a href="qvaluelist.html">QValueList</a>{public:    /**     * Typedefs     */    typedef QValueListIterator&lt;T&gt; Iterator;    typedef QValueListConstIterator&lt;T&gt; ConstIterator;    typedef T ValueType;    /**     * API     */    QValueList() { sh = new QValueListPrivate&lt;T&gt;; }    QValueList( const QValueList&lt;T&gt;&amp; l ) { sh = l.sh; sh-&gt;ref(); }    ~QValueList() { sh-&gt;derefAndDelete(); }    QValueList&lt;T&gt;&amp; operator= ( const QValueList&lt;T&gt;&amp; l )    {        l.sh-&gt;ref();        sh-&gt;derefAndDelete();        sh = l.sh;        return *this;    }    QValueList&lt;T&gt; operator+ ( const QValueList&lt;T&gt;&amp; l ) const    {        QValueList&lt;T&gt; l2( *this );        for( ConstIterator it = l.begin(); it != l.end(); ++it )            l2.append( *it );        return l2;    }    QValueList&lt;T&gt;&amp; operator+= ( const QValueList&lt;T&gt;&amp; l )    {        for( ConstIterator it = l.begin(); it != l.end(); ++it )            append( *it );        return *this;    }    bool operator== ( const QValueList&lt;T&gt;&amp; l ) const    {        if ( count() != l.count() )            return FALSE;        ConstIterator it2 = begin();        ConstIterator it = l.begin();        for( ; it != l.end(); ++it, ++it2 )            if ( !( *it == *it2 ) )                return FALSE;        return TRUE;    }    bool operator!= ( const QValueList&lt;T&gt;&amp; l ) const { return !( *this == l ); }    Iterator begin() { detach(); return Iterator( sh-&gt;node-&gt;next ); }    ConstIterator begin() const { return ConstIterator( sh-&gt;node-&gt;next ); }    Iterator end() { detach(); return Iterator( sh-&gt;node ); }    ConstIterator end() const { return ConstIterator( sh-&gt;node ); }    Iterator fromLast() { detach(); return Iterator( sh-&gt;node-&gt;prev ); }    ConstIterator fromLast() const { return ConstIterator( sh-&gt;node-&gt;prev ); }    bool isEmpty() const { return ( sh-&gt;nodes == 0 ); }    Iterator insert( Iterator it, const T&amp; x ) { detach(); return sh-&gt;insert( it, x ); }    Iterator append( const T&amp; x ) { detach(); return sh-&gt;insert( end(), x ); }    Iterator prepend( const T&amp; x ) { detach(); return sh-&gt;insert( begin(), x ); }    Iterator remove( Iterator it ) { detach(); return sh-&gt;remove( it ); }    void remove( const T&amp; x ) { detach(); sh-&gt;remove( x ); }    T&amp; first() { detach(); return sh-&gt;node-&gt;next-&gt;data; }    const T&amp; first() const { return sh-&gt;node-&gt;next-&gt;data; }    T&amp; last() { detach(); return sh-&gt;node-&gt;prev-&gt;data; }    const T&amp; last() const { return sh-&gt;node-&gt;prev-&gt;data; }    T&amp; operator[] ( uint i ) { detach(); return sh-&gt;at(i)-&gt;data; }    const T&amp; operator[] ( uint i ) const { return sh-&gt;at(i)-&gt;data; }    Iterator at( uint i ) { detach(); return Iterator( sh-&gt;at(i) ); }    ConstIterator at( uint i ) const { return ConstIterator( sh-&gt;at(i) ); }    Iterator find ( const T&amp; x ) { detach(); return Iterator( sh-&gt;find( sh-&gt;node-&gt;next, x) ); }    ConstIterator find ( const T&amp; x ) const { return ConstIterator( sh-&gt;find( sh-&gt;node-&gt;next, x) ); }    Iterator find ( Iterator it, const T&amp; x ) { detach(); return Iterator( sh-&gt;find( it.node, x ) ); }    ConstIterator find ( ConstIterator it, const T&amp; x ) const { return ConstIterator( sh-&gt;find( it.node, x ) ); }    int findIndex( const T&amp; x ) const { return sh-&gt;findIndex( sh-&gt;node-&gt;next, x) ; }    uint contains( const T&amp; x ) const { return sh-&gt;contains( x ); }    uint count() const { return sh-&gt;nodes; }    void clear() { if ( sh-&gt;count == 1 ) sh-&gt;clear(); else { sh-&gt;deref(); sh = new QValueListPrivate&lt;T&gt;; } }    QValueList&lt;T&gt;&amp; operator+= ( const T&amp; x )    {        append( x );        return *this;    }    QValueList&lt;T&gt;&amp; operator&lt;&lt; ( const T&amp; x )    {        append( x );        return *this;    }protected:    /**     * Helpers     */    void detach() { if ( sh-&gt;count &gt; 1 ) { sh-&gt;deref(); sh = new QValueListPrivate&lt;T&gt;( *sh ); } }    /**     * Variables     */    QValueListPrivate&lt;T&gt;* sh;};#if defined(Q_TEMPLATEDLL)template class Q_EXPORT QValueList&lt;int&gt;;#endif#ifndef QT_NO_DATASTREAMtemplate&lt;class T&gt;inline QDataStream&amp; operator&gt;&gt;( QDataStream&amp; s, QValueList&lt;T&gt;&amp; l ){    l.clear();    Q_UINT32 c;    s &gt;&gt; c;    for( Q_UINT32 i = 0; i &lt; c; ++i )    {        T t;        s &gt;&gt; t;        l.append( t );        if ( s.atEnd() )            break;    }    return s;}template&lt;class T&gt;inline QDataStream&amp; operator&lt;&lt;( QDataStream&amp; s, const QValueList&lt;T&gt;&amp; l ){    s &lt;&lt; (Q_UINT32)l.count();    QValueListConstIterator&lt;T&gt; it = l.begin();    for( ; it != l.end(); ++it )        s &lt;&lt; *it;    return s;}#endif // QT_NO_DATASTREAM#endif // QVALUELIST_H</pre><p><address><hr><div align="center"><table width="100%" cellspacing="0" border="0"><tr><td>Copyright 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -