/**************************************************************************** ** ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the documentation of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.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 the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QLinkedList integerList; QLinkedList timeList; //! [0] //! [1] QLinkedList list; list << "one" << "two" << "three"; // list: ["one", "two", "three"] //! [1] //! [2] QLinkedList list; ... while (!list.isEmpty()) delete list.takeFirst(); //! [2] //! [3] QLinkedList list; list.append("one"); list.append("two"); list.append("three"); // list: ["one", "two", "three"] //! [3] //! [4] QLinkedList list; list.prepend("one"); list.prepend("two"); list.prepend("three"); // list: ["three", "two", "one"] //! [4] //! [5] QList list; list << "sun" << "cloud" << "sun" << "rain"; list.removeAll("sun"); // list: ["cloud", "rain"] //! [5] //! [6] QList list; list << "sun" << "cloud" << "sun" << "rain"; list.removeOne("sun"); // list: ["cloud", "sun", "rain"] //! [6] //! [7] QLinkedList list; list.append("January"); list.append("February"); ... list.append("December"); QLinkedList::iterator i; for (i = list.begin(); i != list.end(); ++i) cout << *i << endl; //! [7] //! [8] QLinkedList list; ... QLinkedList::iterator it = qFind(list.begin(), list.end(), "Joel"); if (it != list.end()) cout << "Found Joel" << endl; //! [8] //! [9] QLinkedList::iterator i; for (i = list.begin(); i != list.end(); ++i) *i += 2; //! [9] //! [10] QLinkedList list; ... QLinkedList::iterator i = list.begin(); while (i != list.end()) { if ((*i).startsWith("_")) i = list.erase(i); else ++i; } //! [10] //! [11] QLinkedList::iterator i = list.begin(); while (i != list.end()) { QLinkedList::iterator previous = i; ++i; if ((*previous).startsWith("_")) list.erase(previous); } //! [11] //! [12] // WRONG while (i != list.end()) { if ((*i).startsWith("_")) list.erase(i); ++i; } //! [12] //! [13] if (*it == "Hello") *it = "Bonjour"; //! [13] //! [14] QLinkedList list; list.append("January"); list.append("February"); ... list.append("December"); QLinkedList::const_iterator i; for (i = list.constBegin(); i != list.constEnd(); ++i) cout << *i << endl; //! [14] //! [15] QLinkedList list; ... QLinkedList::iterator it = qFind(list.constBegin(), list.constEnd(), "Joel"); if (it != list.constEnd()) cout << "Found Joel" << endl; //! [15] //! [16] std::list stdlist; list.push_back(1.2); list.push_back(0.5); list.push_back(3.14); QLinkedList list = QLinkedList::fromStdList(stdlist); //! [16] //! [17] QLinkedList list; list << 1.2 << 0.5 << 3.14; std::list stdlist = list.toStdList(); //! [17]