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

📄 qdatetime.3qt

📁 linux下GUI编程工具qt的在线连接帮助手册
💻 3QT
字号:
'\" t.TH QDateTime 3qt "11 October 2001" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQDateTime \- Date and time functions.PP\fC#include <qdatetime.h>\fR.PP.SS "Public Members".in +1c.ti -1c.BI "\fBQDateTime\fR ()".br.ti -1c.BI "\fBQDateTime\fR ( const QDate & date )".br.ti -1c.BI "\fBQDateTime\fR ( const QDate & date, const QTime & time )".br.ti -1c.BI "bool \fBisNull\fR () const".br.ti -1c.BI "bool \fBisValid\fR () const".br.ti -1c.BI "QDate \fBdate\fR () const".br.ti -1c.BI "QTime \fBtime\fR () const".br.ti -1c.BI "void \fBsetDate\fR ( const QDate & date )".br.ti -1c.BI "void \fBsetTime\fR ( const QTime & time )".br.ti -1c.BI "void \fBsetTime_t\fR ( uint secsSince1Jan1970UTC )".br.ti -1c.BI "QString \fBtoString\fR ( Qt::DateFormat f = Qt::TextDate ) const".br.ti -1c.BI "QString \fBtoString\fR ( const QString & format ) const".br.ti -1c.BI "QDateTime \fBaddDays\fR ( int ndays ) const".br.ti -1c.BI "QDateTime \fBaddMonths\fR ( int nmonths ) const".br.ti -1c.BI "QDateTime \fBaddYears\fR ( int nyears ) const".br.ti -1c.BI "QDateTime \fBaddSecs\fR ( int nsecs ) const".br.ti -1c.BI "int \fBdaysTo\fR ( const QDateTime & dt ) const".br.ti -1c.BI "int \fBsecsTo\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator==\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator!=\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator<\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator<=\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator>\fR ( const QDateTime & dt ) const".br.ti -1c.BI "bool \fBoperator>=\fR ( const QDateTime & dt ) const".br.in -1c.SS "Static Public Members".in +1c.ti -1c.BI "QDateTime \fBcurrentDateTime\fR ()".br.ti -1c.BI "QDateTime \fBfromString\fR ( const QString & s, Qt::DateFormat f = Qt::TextDate )".br.in -1c.SH RELATED FUNCTION DOCUMENTATION.in +1c.ti -1c.BI "QDataStream & \fBoperator<<\fR ( QDataStream & s, const QDateTime & dt )".br.ti -1c.BI "QDataStream & \fBoperator>>\fR ( QDataStream & s, QDateTime & dt )".br.in -1c.SH DESCRIPTIONThe QDateTime class provides date and time functions..PPA QDateTime object contains a calendar date and a clock time (a" datetime"). It is a combination of the QDate and QTime classes. It can read the current datetime from the system clock. It provides functions for comparing datetimes and for manipulating a datetime by adding a number of seconds, days, months or years..PPA QDateTime object is typically created either by giving a date and time explicitly in the constructor, or by using the static function currentDateTime(), which returns a QDateTime object set to the system clock's time. The date and time can be changed with setDate() and setTime(). A datetime can also be set using the setTime_t() function, which takes a POSIX-standard "number of seconds since 00:00:00 on January 1, 1970" value. The fromString() function returns a QDate given a string and a date format which is used to interpret the date within the string..PPThe date() and time() functions provide access to the date and time parts of the datetime. The same information is provided in textual format by the toString() function..PPQDateTime provides a full set of operators to compare two QDateTime objects where smaller means earlier and larger means later..PPYou can increment (or decrement) a datetime by a given number of seconds using addSecs() or days using addDays(). Similarly you can use addMonths() and addYears(). The daysTo() function returns the number of days between two datetimes, and sectTo() returns the number of seconds between two datetimes..PPThe range of a datetime object is constrained to the ranges of the QDate and QTime objects which it embodies..PPSee also QDate, QTime, QDateTimeEdit and Time and Date..SH MEMBER FUNCTION DOCUMENTATION.SH "QDateTime::QDateTime ()"Constructs a null datetime (i.e. null date and null time). A null datetime is invalid, since the date is invalid..PPSee also isValid()..SH "QDateTime::QDateTime ( const QDate & date )"Constructs a datetime with date \fIdate\fR and null time (00:00:00.000)..SH "QDateTime::QDateTime ( const QDate & date, const QTime & time )"Constructs a datetime with date \fIdate\fR and time \fItime\fR..SH "QDateTime QDateTime::addDays ( int ndays ) const"Returns a QDateTime object containing a datetime \fIndays\fR days later than the datetime of this object (or earlier if \fIndays\fR is negative)..PPSee also daysTo(), addMonths(), addYears() and addSecs()..SH "QDateTime QDateTime::addMonths ( int nmonths ) const"Returns a QDateTime object containing a datetime \fInmonths\fR months later than the datetime of this object (or earlier if \fInmonths\fR is negative)..PPSee also daysTo(), addDays(), addYears() and addSecs()..SH "QDateTime QDateTime::addSecs ( int nsecs ) const"Returns a QDateTime object containing a datetime \fInsecs\fR seconds later than the datetime of this object (or earlier if \fInsecs\fR is negative)..PPSee also secsTo(), addDays(), addMonths() and addYears()..PPExample: listviews/listviews.cpp..SH "QDateTime QDateTime::addYears ( int nyears ) const"Returns a QDateTime object containing a datetime \fInyears\fR years later than the datetime of this object (or earlier if \fInyears\fR is negative)..PPSee also daysTo(), addDays(), addMonths() and addSecs()..SH "QDateTime QDateTime::currentDateTime ()\fC [static]\fR"Returns the current datetime, as reported by the system clock..PPSee also QDate::currentDate() and QTime::currentTime()..PPExample: listviews/listviews.cpp..SH "QDate QDateTime::date () const"Returns the date part of the datetime..PPSee also setDate() and time()..SH "int QDateTime::daysTo ( const QDateTime & dt ) const"Returns the number of days from this datetime to \fIdt\fR (which is negative if \fIdt\fR is earlier than this datetime)..PPSee also addDays() and secsTo()..SH "QDateTime QDateTime::fromString ( const QString & s, Qt::DateFormat f = Qt::TextDate )\fC [static]\fR"Returns the QDateTime represented by the string \fIs\fR, using the format \fIf\fR, or an invalid datetime if this is not possible..PPNote that Qt::LocalDate cannot be used here..PPNote for Qt::TextDate: It is recommended to use the English short month names (e.g. Jan). Localized month names may also be used, but they depend on the user's locale settings..SH "bool QDateTime::isNull () const"Returns TRUE if both the date and the time are null; otherwise returns FALSE. A null datetime is invalid..PPSee also QDate::isNull() and QTime::isNull()..SH "bool QDateTime::isValid () const"Returns TRUE if both the date and the time are valid; otherwise returns FALSE..PPSee also QDate::isValid() and QTime::isValid()..SH "bool QDateTime::operator!= ( const QDateTime & dt ) const"Returns TRUE if this datetime is different from \fIdt\fR; otherwise returns FALSE..PPSee also operator==()..SH "bool QDateTime::operator< ( const QDateTime & dt ) const"Returns TRUE if this datetime is earlier than \fIdt\fR, otherwise returns FALSE..SH "bool QDateTime::operator<= ( const QDateTime & dt ) const"Returns TRUE if this datetime is earlier than or equal to \fIdt\fR, otherwise returns FALSE..SH "bool QDateTime::operator== ( const QDateTime & dt ) const"Returns TRUE if this datetime is equal to \fIdt\fR; otherwise returns FALSE..PPSee also operator!=()..SH "bool QDateTime::operator> ( const QDateTime & dt ) const"Returns TRUE if this datetime is later than \fIdt\fR, otherwise returns FALSE..SH "bool QDateTime::operator>= ( const QDateTime & dt ) const"Returns TRUE if this datetime is later than or equal to \fIdt\fR, otherwise returns FALSE..SH "int QDateTime::secsTo ( const QDateTime & dt ) const"Returns the number of seconds from this datetime to \fIdt\fR (which is negative if \fIdt\fR is earlier than this datetime)..PPExample:.PP.nf.br    QDateTime dt = QDateTime::currentDateTime();.br    QDateTime xmas( QDate(dt.year(),12,24), QTime(17,00) );.br    qDebug( "There are %d seconds to Christmas", dt.secsTo(xmas) );.br.fi.PPSee also addSecs(), daysTo() and QTime::secsTo()..SH "void QDateTime::setDate ( const QDate & date )"Sets the date part of this datetime to \fIdate\fR..PPSee also date() and setTime()..SH "void QDateTime::setTime ( const QTime & time )"Sets the time part of this datetime to \fItime\fR..PPSee also time() and setDate()..SH "void QDateTime::setTime_t ( uint secsSince1Jan1970UTC )"Sets the date and time to local time given the number of seconds that have passed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC). On systems that do not support timezones this function will behave as if local time were UTC..PPNote that Microsoft Windows supports only a limited range of values for \fIsecsSince1Jan1970UTC\fR..SH "QTime QDateTime::time () const"Returns the time part of the datetime..PPSee also setTime() and date()..SH "QString QDateTime::toString ( const QString & format ) const"Returns the datetime as a string. The \fIformat\fR parameter determines the format of the result string..PPThese expressions may be used for the date:.TP\fId\fR - the day as number without a leading zero (1-31).TP\fIdd\fR - the day as number with a leading zero (01-31).TP\fIddd\fR - the abbrevated day name (Mon - Sun). Uses QDate::shortDayName()..TP\fIdddd\fR - the long day name (Monday - Sunday). Uses QDate::longDayName()..TP\fIM\fR - the month as number without a leading zero (1-12).TP\fIMM\fR - the month as number with a leading zero (01-12).TP\fIMMM\fR - the abbrevated month name (Jan - Dec). Uses QDate::shortMonthName()..TP\fIMMMM\fR - the long month name (January - December). Uses QDate::longMonthName()..TP\fIyy\fR - the year as two digit number (00-99).TP\fIyyyy\fR - the year as four digit number (0000-9999).PPThese expressions may be used for the time:.TP\fIh\fR - the hour without a leading zero (0-23 or 1-12 if AM/PM display).TP\fIhh\fR - the hour with a leading zero (00-23 or 01-12 if AM/PM display).TP\fIm\fR - the minute without a leading zero (0-59).TP\fImm\fR - the minute with a leading zero (00-59).TP\fIs\fR - the second whithout a leading zero (0-59).TP\fIss\fR - the second whith a leading zero (00-59).TP\fIz\fR - the milliseconds without leading zeroes (0-999).TP\fIzzz\fR - the milliseconds with leading zeroes (000-999).TP\fIAP\fR - switch to AM/PM display. \fIAP\fR will be replaced by either "AM" or "PM"..TP\fIap\fR - switch to AM/PM display. \fIap\fR will be replaced by either "am" or "pm"..PPAll other input characters will be ignored..PPExample format Strings (assumed that the QDateTime is 21. May 2001 14:13:09).TP"dd.MM.yyyy" will result in "21.05.2001".TP"ddd MMMM d yy" will result in "Tue May 21 01".TP"hh:mm:ss.zzz" will result in "14:13:09.042".TP"h:m:s ap" will result in "2:13:9 pm".PPSee also QDate::toString() and QTime::toString()..SH "QString QDateTime::toString ( Qt::DateFormat f = Qt::TextDate ) const"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns the datetime as a string. The \fIf\fR parameter determines the format of the string..PPIf \fIf\fR is Qt::TextDate, the string format is "Wed May 20 03:40:13 1998" (using QDate::shortDayName(), QDate::shortMonthName(), and QTime::toString() to generate the string)..PPIf \fIf\fR is Qt::ISODate, the string format corresponds to the ISO 8601 specification for representations of dates and times, which is YYYY-MM-DDTHH:MM:SS..PPIf \fIf\fR is Qt::LocalDate, the string format depends on the locale settings of the system..PPIf the format \fIf\fR is invalid, toString() returns a null string..PPSee also QDate::toString() and QTime::toString()..PP.SH RELATED FUNCTION DOCUMENTATION.SH "QDataStream & operator<< ( QDataStream & s, const QDateTime & dt )"Writes the datetime \fIdt\fR to the stream \fIs\fR..PPSee also Format of the QDataStream operators..SH "QDataStream & operator>> ( QDataStream & s, QDateTime & dt )"Reads a datetime from the stream \fIs\fR into \fIdt\fR..PPSee also Format of the QDataStream operators..SH "SEE ALSO".BR http://doc.trolltech.com/qdatetime.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qdatetime.3qt) and the Qtversion (3.0.0).

⌨️ 快捷键说明

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