qvaluelistconstiterator.3qt
来自「tmark1.11:用于生成QT/EMBEDDED应用工程的Markfile文件」· 3QT 代码 · 共 89 行
3QT
89 行
.TH QValueListConstIterator 3qt "6 July 1999" "Troll Tech AS" \" -*- nroff -*-.\" Copyright 1992-1999 Troll Tech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQValueListConstIterator \- Iterator for QValueList.SH SYNOPSIS.br.PP\fC#include <qvaluelist.h>\fR.PP.SS "Public Members".in +1c.ti -1c.BI "\fBQValueListConstIterator\fR ()".br.ti -1c.BI "\fBQValueListConstIterator\fR ( NodePtr p )".br.ti -1c.BI "\fBQValueListConstIterator\fR ( const QValueListConstIterator<T> & it )".br.ti -1c.BI "\fBQValueListConstIterator\fR ( const QValueListIterator<T> & it )".br.ti -1c.BI "bool \fBoperator==\fR ( const QValueListConstIterator<T> & it ) const".br.ti -1c.BI "bool \fBoperator!=\fR ( const QValueListConstIterator<T> & it ) const".br.ti -1c.BI "const T& \fBoperator*\fR () const".br.ti -1c.BI "QValueListConstIterator<T>& \fBoperator++\fR ()".br.ti -1c.BI "QValueListConstIterator<T> \fBoperator++\fR ( int )".br.ti -1c.BI "QValueListConstIterator<T>& \fBoperator--\fR ()".br.ti -1c.BI "QValueListConstIterator<T> \fBoperator--\fR ( int )".br.in -1c.SH DESCRIPTIONThe QValueListConstIterator class provides an iterator for QValueList..PPIn contrast to QValueListIterator this class is used to iterate over a const list. It does not allow to modify the values of the list since this would break the const semantics..PPFor more informations on QValueList iterators see QValueListIterator..PPSee also: QValueListIterator, \\sa and QValueList..SH MEMBER FUNCTION DOCUMENTATION.SH "QValueListConstIterator::QValueListConstIterator ()"Creates un unitilaized iterator..SH "QValueListConstIterator::QValueListConstIterator ( NodePtr p )"Internal function..SH "QValueListConstIterator::QValueListConstIterator ( const QValueListIterator<T> & it )"Constructs a copy of the iterator \fIit.\fR.SH "QValueListConstIterator::QValueListConstIterator ( const QValueListConstIterator<T> & it )"Constructs a copy of the iterator \fIit.\fR.SH "bool QValueListConstIterator::operator!= ( const QValueListConstIterator<T> & it ) const"Compares both iterators and returns TRUE if they point to different items..SH "const T& QValueListConstIterator::operator* () const"Asterix operator. Returns a reference to the current iterator item..SH "QValueListConstIterator<T> QValueListConstIterator::operator++ ( int )"Postfix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the end of the list. Incrementing the iterator as returned by end() causes undefined results..SH "QValueListConstIterator<T>& QValueListConstIterator::operator++ ()"Prefix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the end of the list. Incrementing the iterator as returned by end() causes undefined results..SH "QValueListConstIterator<T> QValueListConstIterator::operator-- ( int )"Postfix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the beginning of the list. Decrementing the iterator as returned by begin() causes undefined results..SH "QValueListConstIterator<T>& QValueListConstIterator::operator-- ()"Prefix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator can not check wether it reached the beginning of the list. Decrementing the iterator as returned by begin() causes undefined results..SH "bool QValueListConstIterator::operator== ( const QValueListConstIterator<T> & it ) const"Compares both iterators and returns TRUE if they point to the same item..SH "SEE ALSO".BR http://www.troll.no/qt/qvaluelistconstiterator.html.SH COPYRIGHTCopyright 1992-1999 Troll Tech AS. See the license file included inthe distribution for a complete license statement..SH AUTHORGenerated automatically from the source code.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?