The QDateTime 类提供日期和时间功能。 更多...
头: | #include <QDateTime> |
qmake: | QT += core |
注意: 此类的所有函数 可重入 .
QDateTime () | |
QDateTime (const QDate & date ) | |
QDateTime (const QDate & date , const QTime & time , Qt::TimeSpec spec = Qt::LocalTime) | |
QDateTime (const QDate & date , const QTime & time , Qt::TimeSpec spec , int offsetSeconds ) | |
QDateTime (const QDate & date , const QTime & time , const QTimeZone & timeZone ) | |
QDateTime (const QDateTime & other ) | |
QDateTime (QDateTime && other ) | |
~QDateTime () | |
QDateTime | addDays (qint64 ndays ) const |
QDateTime | addMSecs (qint64 msecs ) const |
QDateTime | addMonths (int nmonths ) const |
QDateTime | addSecs (qint64 s ) const |
QDateTime | addYears (int nyears ) const |
QDate | date () const |
qint64 | daysTo (const QDateTime & other ) const |
bool | isDaylightTime () const |
bool | isNull () const |
bool | isValid () const |
qint64 | msecsTo (const QDateTime & other ) const |
int | offsetFromUtc () const |
qint64 | secsTo (const QDateTime & other ) const |
void | setDate (const QDate & date ) |
void | setMSecsSinceEpoch (qint64 msecs ) |
void | setOffsetFromUtc (int offsetSeconds ) |
void | setSecsSinceEpoch (qint64 secs ) |
void | setTime (const QTime & time ) |
void | setTimeSpec (Qt::TimeSpec spec ) |
void | setTimeZone (const QTimeZone & toZone ) |
void | swap (QDateTime & other ) |
QTime | time () const |
Qt::TimeSpec | timeSpec () const |
QTimeZone | timeZone () const |
QString | timeZoneAbbreviation () const |
CFDateRef | toCFDate () const |
QDateTime | toLocalTime () const |
qint64 | toMSecsSinceEpoch () const |
NSDate * | toNSDate () const |
QDateTime | toOffsetFromUtc (int offsetSeconds ) const |
qint64 | toSecsSinceEpoch () const |
QString | toString (const QString & format ) const |
QString | toString (Qt::DateFormat format = Qt::TextDate) const |
QDateTime | toTimeSpec (Qt::TimeSpec spec ) const |
QDateTime | toTimeZone (const QTimeZone & timeZone ) const |
QDateTime | toUTC () const |
bool | operator!= (const QDateTime & other ) const |
bool | operator< (const QDateTime & other ) const |
bool | operator<= (const QDateTime & other ) const |
QDateTime & | operator= (QDateTime && other ) |
QDateTime & | operator= (const QDateTime & other ) |
bool | operator== (const QDateTime & other ) const |
bool | operator> (const QDateTime & other ) const |
bool | operator>= (const QDateTime & other ) const |
QDateTime | currentDateTime () |
QDateTime | currentDateTimeUtc () |
qint64 | currentMSecsSinceEpoch () |
qint64 | currentSecsSinceEpoch () |
QDateTime | fromCFDate (CFDateRef date ) |
QDateTime | fromMSecsSinceEpoch (qint64 msecs ) |
QDateTime | fromMSecsSinceEpoch (qint64 msecs , Qt::TimeSpec spec , int offsetSeconds = 0) |
QDateTime | fromMSecsSinceEpoch (qint64 msecs , const QTimeZone & timeZone ) |
QDateTime | fromNSDate (const NSDate * date ) |
QDateTime | fromSecsSinceEpoch (qint64 secs , Qt::TimeSpec spec = Qt::LocalTime, int offsetSeconds = 0) |
QDateTime | fromSecsSinceEpoch (qint64 secs , const QTimeZone & timeZone ) |
QDateTime | fromString (const QString & string , Qt::DateFormat format = Qt::TextDate) |
QDateTime | fromString (const QString & string , const QString & format ) |
QDataStream & | operator<< (QDataStream & out , const QDateTime & dateTime ) |
QDataStream & | operator>> (QDataStream & in , QDateTime & dateTime ) |
The QDateTime 类提供日期和时间功能。
A 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.
A QDateTime object is typically created either by giving a date and time explicitly in the constructor, or by using the static function currentDateTime () that returns a QDateTime object set to the system clock's time. The date and time can be changed with setDate () 和 setTime (). A datetime can also be set using the setTime_t() function that takes a POSIX-standard "number of seconds since 00:00:00 on January 1, 1970" value. The fromString () 函数返回 QDateTime , given a string and a date format used to interpret the date within the string.
The date () 和 time () functions provide access to the date and time parts of the datetime. The same information is provided in textual format by the toString () 函数。
QDateTime provides a full set of operators to compare two QDateTime objects, where smaller means earlier and larger means later.
You can increment (or decrement) a datetime by a given number of milliseconds using addMSecs (), seconds using addSecs (), or days using addDays (). Similarly, you can use addMonths () 和 addYears ()。 daysTo () function returns the number of days between two datetimes, secsTo () returns the number of seconds between two datetimes, and msecsTo () returns the number of milliseconds between two datetimes.
QDateTime can store datetimes as local time or as UTC . QDateTime::currentDateTime () 返回 QDateTime expressed as local time; use toUTC () to convert it to UTC. You can also use timeSpec () to find out if a QDateTime object stores a UTC time or a local time. Operations such as addSecs () 和 secsTo () are aware of daylight-saving time (DST).
注意: QDateTime does not account for leap seconds.
There is no year 0. Dates in that year are considered invalid. The year -1 is the year "1 before Christ" or "1 before current era." The day before 1 January 1 CE is 31 December 1 BCE.
The range of valid values able to be stored in QDateTime is dependent on the internal storage implementation. QDateTime is currently stored in a qint64 as a serial msecs value encoding the date and time. This restricts the date range to about +/- 292 million years, compared to the QDate range of +/- 2 billion years. Care must be taken when creating a QDateTime with extreme values that you do not overflow the storage. The exact range of supported values varies depending on the Qt::TimeSpec and time zone.
QDateTime uses the system's time zone information to determine the offset of local time from UTC. If the system is not configured correctly or not up-to-date, QDateTime will give wrong results as well.
QDateTime takes into account the system's time zone information when dealing with DST. On modern Unix systems, this means it applies the correct historical DST data whenever possible. On Windows, where the system doesn't support historical DST data, historical accuracy is not maintained with respect to DST.
The range of valid dates taking DST into account is 1970-01-01 to the present, and rules are in place for handling DST correctly until 2037-12-31, but these could change. For dates falling outside that range, QDateTime makes a best guess using the rules for year 1970 or 2037, but we can't guarantee accuracy. This means QDateTime doesn't take into account changes in a locale's time zone before 1970, even if the system's time zone database supports that information.
QDateTime takes into consideration the Standard Time to Daylight-Saving Time transition. For example if the transition is at 2am and the clock goes forward to 3am, then there is a "missing" hour from 02:00:00 to 02:59:59.999 which QDateTime considers to be invalid. Any date maths performed will take this missing hour into account and return a valid result.
A Qt::TimeSpec of Qt::OffsetFromUTC is also supported. This allows you to define a QDateTime relative to UTC at a fixed offset of a given number of seconds from UTC. For example, an offset of +3600 seconds is one hour ahead of UTC and is usually written in ISO standard notation as "UTC+01:00". Daylight-Saving Time never applies with this TimeSpec.
There is no explicit size restriction to the offset seconds, but there is an implicit limit imposed when using the toString () 和 fromString () methods which use a format of [+|-]hh:mm, effectively limiting the range to +/- 99 hours and 59 minutes and whole minutes only. Note that currently no time zone lies outside the range of +/- 14 hours.
A Qt::TimeSpec of Qt::TimeZone is also supported in conjunction with the QTimeZone class. This allows you to define a datetime in a named time zone adhering to a consistent set of daylight-saving transition rules. For example a time zone of "Europe/Berlin" will apply the daylight-saving rules as used in Germany since 1970. Note that the transition rules applied depend on the platform support. See the QTimeZone 文档编制了解更多细节。
另请参阅 QDate , QTime , QDateTimeEdit ,和 QTimeZone .
Constructs a null datetime (i.e. null date and null time). A null datetime is invalid, since the date is invalid.
另请参阅 isValid ().
构造日期时间采用给定 date , a valid time(00:00:00.000), and sets the timeSpec () 到 Qt::LocalTime .
构造日期时间采用给定 date and time , using the time specification defined by spec .
若 date 有效和 time is not, the time will be set to midnight.
若 spec is Qt::OffsetFromUTC then it will be set to Qt::UTC , i.e. an offset of 0 seconds. To create a Qt::OffsetFromUTC datetime use the correct constructor.
若 spec is Qt::TimeZone then the spec will be set to Qt::LocalTime , i.e. the current system time zone. To create a Qt::TimeZone datetime use the correct constructor.
构造日期时间采用给定 date and time , using the time specification defined by spec and offsetSeconds 秒。
若 date 有效和 time is not, the time will be set to midnight.
若 spec 不是 Qt::OffsetFromUTC then offsetSeconds 将被忽略。
若 spec is Qt::OffsetFromUTC and offsetSeconds 为 0 那么 timeSpec () 会被设为 Qt::UTC , i.e. an offset of 0 seconds.
若 spec is Qt::TimeZone then the spec will be set to Qt::LocalTime , i.e. the current system time zone. To create a Qt::TimeZone datetime use the correct constructor.
该函数在 Qt 5.2 引入。
构造日期时间采用给定 date and time , using the Time Zone specified by timeZone .
若 date 有效和 time is not, the time will be set to 00:00:00.
若 timeZone is invalid then the datetime will be invalid.
该函数在 Qt 5.2 引入。
构造副本为 other datetime.
Moves the content of the temporary other datetime to this object and leaves other in an unspecified (but proper) state.
该函数在 Qt 5.8 引入。
销毁日期时间。
返回 QDateTime 对象包含日期时间 ndays days later than the datetime of this object (or earlier if ndays is negative).
若 timeSpec () 是 Qt::LocalTime and the resulting date and time fall in the Standard Time to Daylight-Saving Time transition hour then the result will be adjusted accordingly, i.e. if the transition is at 2am and the clock goes forward to 3am and the result falls between 2am and 3am then the result will be adjusted to fall after 3am.
另请参阅 daysTo (), addMonths (), addYears (),和 addSecs ().
返回 QDateTime 对象包含日期时间 msecs miliseconds later than the datetime of this object (or earlier if msecs is negative).
If this datetime is invalid, an invalid datetime will be returned.
另请参阅 addSecs (), msecsTo (), addDays (), addMonths (),和 addYears ().
返回 QDateTime 对象包含日期时间 nmonths months later than the datetime of this object (or earlier if nmonths is negative).
若 timeSpec () 是 Qt::LocalTime and the resulting date and time fall in the Standard Time to Daylight-Saving Time transition hour then the result will be adjusted accordingly, i.e. if the transition is at 2am and the clock goes forward to 3am and the result falls between 2am and 3am then the result will be adjusted to fall after 3am.
另请参阅 daysTo (), addDays (), addYears (),和 addSecs ().
返回 QDateTime 对象包含日期时间 s seconds later than the datetime of this object (or earlier if s is negative).
If this datetime is invalid, an invalid datetime will be returned.
另请参阅 addMSecs (), secsTo (), addDays (), addMonths (),和 addYears ().
返回 QDateTime 对象包含日期时间 nyears years later than the datetime of this object (or earlier if nyears is negative).
若 timeSpec () 是 Qt::LocalTime and the resulting date and time fall in the Standard Time to Daylight-Saving Time transition hour then the result will be adjusted accordingly, i.e. if the transition is at 2am and the clock goes forward to 3am and the result falls between 2am and 3am then the result will be adjusted to fall after 3am.
另请参阅 daysTo (), addDays (), addMonths (),和 addSecs ().
[static]
QDateTime
QDateTime::
currentDateTime
()
返回在本地时区由系统时钟报告的当前 datetime。
另请参阅 currentDateTimeUtc (), QDate::currentDate (), QTime::currentTime (),和 toTimeSpec ().
[static]
QDateTime
QDateTime::
currentDateTimeUtc
()
Returns the current datetime, as reported by the system clock, in UTC.
该函数在 Qt 4.7 引入。
另请参阅 currentDateTime (), QDate::currentDate (), QTime::currentTime (),和 toTimeSpec ().
[static]
qint64
QDateTime::
currentMSecsSinceEpoch
()
Returns the number of milliseconds since 1970-01-01T00:00:00 Universal Coordinated Time. This number is like the POSIX time_t variable, but expressed in milliseconds instead.
该函数在 Qt 4.7 引入。
另请参阅 currentDateTime (), currentDateTimeUtc (), toTime_t (),和 toTimeSpec ().
[static]
qint64
QDateTime::
currentSecsSinceEpoch
()
Returns the number of seconds since 1970-01-01T00:00:00 Universal Coordinated Time.
该函数在 Qt 5.8 引入。
另请参阅 currentMSecsSinceEpoch ().
返回 datetime 的日期部分。
另请参阅 setDate (), time (),和 timeSpec ().
Returns the number of days from this datetime to the other datetime. The number of days is counted as the number of times midnight is reached between this datetime to the other datetime. This means that a 10 minute difference from 23:55 to 0:05 the next day counts as one day.
若 other datetime is earlier than this datetime, the value returned is negative.
范例:
QDateTime startDate(QDate(2012, 7, 6), QTime(8, 30, 0)); QDateTime endDate(QDate(2012, 7, 7), QTime(16, 30, 0)); qDebug() << "Days from startDate to endDate: " << startDate.daysTo(endDate); startDate = QDateTime(QDate(2012, 7, 6), QTime(23, 55, 0)); endDate = QDateTime(QDate(2012, 7, 7), QTime(0, 5, 0)); qDebug() << "Days from startDate to endDate: " << startDate.daysTo(endDate); qSwap(startDate, endDate); // Make endDate before startDate. qDebug() << "Days from startDate to endDate: " << startDate.daysTo(endDate);
另请参阅 addDays (), secsTo (),和 msecsTo ().
[static]
QDateTime
QDateTime::
fromCFDate
(
CFDateRef
date
)
构造新的 QDateTime containing a copy of the CFDate date .
该函数在 Qt 5.5 引入。
另请参阅 toCFDate ().
[static]
QDateTime
QDateTime::
fromMSecsSinceEpoch
(
qint64
msecs
)
Returns a datetime whose date and time are the number of milliseconds, msecs , that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ), and converted to Qt::LocalTime . On systems that do not support time zones, the time will be set as if local time were Qt::UTC .
Note that there are possible values for msecs that lie outside the valid range of QDateTime , both negative and positive. The behavior of this function is undefined for those values.
该函数在 Qt 4.7 引入。
另请参阅 toMSecsSinceEpoch () 和 setMSecsSinceEpoch ().
[static]
QDateTime
QDateTime::
fromMSecsSinceEpoch
(
qint64
msecs
,
Qt::TimeSpec
spec
,
int
offsetSeconds
= 0)
Returns a datetime whose date and time are the number of milliseconds msecs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ) and converted to the given spec .
Note that there are possible values for msecs that lie outside the valid range of QDateTime , both negative and positive. The behavior of this function is undefined for those values.
若 spec 不是 Qt::OffsetFromUTC 那么 offsetSeconds 会被忽略。若 spec is Qt::OffsetFromUTC 和 offsetSeconds is 0 then the spec will be set to Qt::UTC , i.e. an offset of 0 seconds.
若 spec is Qt::TimeZone then the spec will be set to Qt::LocalTime , i.e. the current system time zone.
该函数在 Qt 5.2 引入。
另请参阅 toMSecsSinceEpoch () 和 setMSecsSinceEpoch ().
[static]
QDateTime
QDateTime::
fromMSecsSinceEpoch
(
qint64
msecs
, const
QTimeZone
&
timeZone
)
Returns a datetime whose date and time are the number of milliseconds msecs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ) 和采用给定 timeZone .
该函数在 Qt 5.2 引入。
另请参阅 fromSecsSinceEpoch ().
[static]
QDateTime
QDateTime::
fromNSDate
(const
NSDate
*
date
)
构造新的 QDateTime containing a copy of the NSDate date .
该函数在 Qt 5.5 引入。
另请参阅 toNSDate ().
[static]
QDateTime
QDateTime::
fromSecsSinceEpoch
(
qint64
secs
,
Qt::TimeSpec
spec
= Qt::LocalTime,
int
offsetSeconds
= 0)
Returns a datetime whose date and time are the number of seconds secs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ) and converted to the given spec .
Note that there are possible values for secs that lie outside the valid range of QDateTime , both negative and positive. The behavior of this function is undefined for those values.
若 spec 不是 Qt::OffsetFromUTC 那么 offsetSeconds 会被忽略。若 spec is Qt::OffsetFromUTC 和 offsetSeconds is 0 then the spec will be set to Qt::UTC , i.e. an offset of 0 seconds.
若 spec is Qt::TimeZone then the spec will be set to Qt::LocalTime , i.e. the current system time zone.
该函数在 Qt 5.8 引入。
另请参阅 toSecsSinceEpoch () 和 setSecsSinceEpoch ().
[static]
QDateTime
QDateTime::
fromSecsSinceEpoch
(
qint64
secs
, const
QTimeZone
&
timeZone
)
Returns a datetime whose date and time are the number of seconds secs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ) 和采用给定 timeZone .
该函数在 Qt 5.8 引入。
另请参阅 fromMSecsSinceEpoch ().
[static]
QDateTime
QDateTime::
fromString
(const
QString
&
string
,
Qt::DateFormat
format
= Qt::TextDate)
返回 QDateTime 表示通过 string ,使用 format given, or an invalid datetime if this is not possible.
Note for Qt::TextDate : It is recommended that you use the English short month names (e.g. "Jan"). Although localized month names can also be used, they depend on the user's locale settings.
另请参阅 toString () 和 QLocale::toDateTime ().
[static]
QDateTime
QDateTime::
fromString
(const
QString
&
string
, const
QString
&
format
)
返回 QDateTime 表示通过 string ,使用 format given, or an invalid datetime if the string cannot be parsed.
These expressions may be used for the date part of the format string:
表达式 | 输出 |
---|---|
d | the day as number without a leading zero (1 to 31) |
dd | the day as number with a leading zero (01 to 31) |
ddd | the abbreviated localized day name (e.g. 'Mon' to 'Sun'). Uses QDate::shortDayName (). |
dddd | the long localized day name (e.g. 'Monday' to 'Sunday'). Uses QDate::longDayName (). |
M | the month as number without a leading zero (1-12) |
MM | the month as number with a leading zero (01-12) |
MMM | the abbreviated localized month name (e.g. 'Jan' to 'Dec'). Uses QDate::shortMonthName (). |
MMMM | the long localized month name (e.g. 'January' to 'December'). Uses QDate::longMonthName (). |
yy | the year as two digit number (00-99) |
yyyy | the year as four digit number |
注意: Unlike the other version of this function, day and month names must be given in the user's local language. It is only possible to use the English names if the user's language is English.
These expressions may be used for the time part of the format string:
表达式 | 输出 |
---|---|
h | the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display) |
hh | the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display) |
H | the hour without a leading zero (0 to 23, even with AM/PM display) |
HH | the hour with a leading zero (00 to 23, even with AM/PM display) |
m | the minute without a leading zero (0 to 59) |
mm | the minute with a leading zero (00 to 59) |
s | the whole second without a leading zero (0 to 59) |
ss | the whole second with a leading zero where applicable (00 to 59) |
z |
the fractional part of the second, to go after a decimal point, without trailing zeroes (0 to 999). Thus "
s.z
" reports the seconds to full available (millisecond) precision without trailing zeroes.
|
zzz | the fractional part of the second, to millisecond precision, including trailing zeroes where applicable (000 to 999). |
AP or A | interpret as an AM/PM time. AP must be either "AM" or "PM". |
ap or a | Interpret as an AM/PM time. ap must be either "am" or "pm". |
All other input characters will be treated as text. Any sequence of characters that are enclosed in single quotes will also be treated as text and not be used as an expression.
QTime time1 = QTime::fromString("131", "HHh"); // time1 is 13:00:00 QTime time1 = QTime::fromString("1apA", "1amAM"); // time1 is 01:00:00 QDateTime dateTime2 = QDateTime::fromString("M1d1y9800:01:02", "'M'M'd'd'y'yyhh:mm:ss"); // dateTime is 1 January 1998 00:01:02
If the format is not satisfied, an invalid QDateTime is returned. The expressions that don't have leading zeroes (d, M, h, m, s, z) will be greedy. This means that they will use two digits even if this will put them outside the range and/or leave too few digits for other sections.
QDateTime dateTime = QDateTime::fromString("130", "Mm"); // invalid
This could have meant 1 January 00:30.00 but the M will grab two digits.
Incorrectly specified fields of the string will cause an invalid QDateTime to be returned. For example, consider the following code, where the two digit year 12 is read as 1912 (see the table below for all field defaults); the resulting datetime is invalid because 23 April 1912 was a Tuesday, not a Monday:
QString string = "Monday, 23 April 12 22:51:41"; QString format = "dddd, d MMMM yy hh:mm:ss"; QDateTime invalid = QDateTime::fromString(string, format);
The correct code is:
QString string = "Tuesday, 23 April 12 22:51:41"; QString format = "dddd, d MMMM yy hh:mm:ss"; QDateTime valid = QDateTime::fromString(string, format);
For any field that is not represented in the format, the following defaults are used:
Field | 默认值 |
---|---|
Year | 1900 |
Month | 1 (January) |
Day | 1 |
Hour | 0 |
Minute | 0 |
Second | 0 |
例如:
QDateTime dateTime = QDateTime::fromString("1.30.1", "M.d.s"); // dateTime is January 30 in 1900 at 00:00:01. dateTime = QDateTime::fromString("12", "yy"); // dateTime is January 1 in 1912 at 00:00:00.
另请参阅 toString (), QDate::fromString (), QTime::fromString (),和 QLocale::toDateTime ().
Returns if this datetime falls in Daylight-Saving Time.
若 Qt::TimeSpec 不是 Qt::LocalTime or Qt::TimeZone then will always return false.
该函数在 Qt 5.2 引入。
另请参阅 timeSpec ().
返回
true
if both the date and the time are null; otherwise returns
false
. A null datetime is invalid.
另请参阅 QDate::isNull (), QTime::isNull (),和 isValid ().
返回
true
if both the date and the time are valid and they are valid in the current
Qt::TimeSpec
,否则返回
false
.
若 timeSpec () 是 Qt::LocalTime or Qt::TimeZone then the date and time are checked to see if they fall in the Standard Time to Daylight-Saving Time transition hour, i.e. if the transition is at 2am and the clock goes forward to 3am then the time from 02:00:00 to 02:59:59.999 is considered to be invalid.
另请参阅 QDate::isValid () 和 QTime::isValid ().
Returns the number of milliseconds from this datetime to the other datetime. If the other datetime is earlier than this datetime, the value returned is negative.
Before performing the comparison, the two datetimes are converted to Qt::UTC to ensure that the result is correct if daylight-saving (DST) applies to one of the two datetimes and but not the other.
返回 0 若日期时间无效。
另请参阅 addMSecs (), daysTo (),和 QTime::msecsTo ().
Returns the current Offset From UTC in seconds.
若 timeSpec () 是 Qt::OffsetFromUTC this will be the value originally set.
若 timeSpec () 是 Qt::TimeZone this will be the offset effective in the Time Zone including any Daylight-Saving Offset.
若 timeSpec () 是 Qt::LocalTime this will be the difference between the Local Time and UTC including any Daylight-Saving Offset.
若 timeSpec () 是 Qt::UTC this will be 0.
该函数在 Qt 5.2 引入。
另请参阅 setOffsetFromUtc ().
Returns the number of seconds from this datetime to the other datetime. If the other datetime is earlier than this datetime, the value returned is negative.
Before performing the comparison, the two datetimes are converted to Qt::UTC to ensure that the result is correct if daylight-saving (DST) applies to one of the two datetimes but not the other.
返回 0 若日期时间无效。
范例:
QDateTime now = QDateTime::currentDateTime(); QDateTime xmas(QDate(now.date().year(), 12, 25), QTime(0, 0)); qDebug("There are %d seconds to Christmas", now.secsTo(xmas));
另请参阅 addSecs (), daysTo (),和 QTime::secsTo ().
Sets the date part of this datetime to date . If no time is set yet, it is set to midnight. If date is invalid, this QDateTime becomes invalid.
另请参阅 date (), setTime (),和 setTimeSpec ().
Sets the date and time given the number of milliseconds msecs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ). On systems that do not support time zones this function will behave as if local time were Qt::UTC .
Note that passing the minimum of
qint64
(
std::numeric_limits<qint64>::min()
) 到
msecs
将产生未定义行为。
该函数在 Qt 4.7 引入。
另请参阅 toMSecsSinceEpoch () 和 setSecsSinceEpoch ().
设置 timeSpec () 到 Qt::OffsetFromUTC and the offset to offsetSeconds . The datetime will refer to a different point in time.
The maximum and minimum offset is 14 positive or negative hours. If offsetSeconds is larger or smaller than that, then the result is undefined.
若 offsetSeconds 为 0 那么 timeSpec () 会被设为 Qt::UTC .
该函数在 Qt 5.2 引入。
另请参阅 isValid () 和 offsetFromUtc ().
Sets the date and time given the number of seconds secs that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ). On systems that do not support time zones this function will behave as if local time were Qt::UTC .
该函数在 Qt 5.8 引入。
另请参阅 toSecsSinceEpoch () 和 setMSecsSinceEpoch ().
Sets the time part of this datetime to time 。若 time is not valid, this function sets it to midnight. Therefore, it's possible to clear any set time in a QDateTime by setting it to a default QTime :
QDateTime dt = QDateTime::currentDateTime(); dt.setTime(QTime());
另请参阅 time (), setDate (),和 setTimeSpec ().
Sets the time specification used in this datetime to spec . The datetime will refer to a different point in time.
若 spec is Qt::OffsetFromUTC 那么 timeSpec () 会被设为 Qt::UTC , i.e. an effective offset of 0.
若 spec is Qt::TimeZone then the spec will be set to Qt::LocalTime , i.e. the current system time zone.
范例:
QDateTime local(QDateTime::currentDateTime()); qDebug() << "Local time is:" << local; QDateTime UTC(local); UTC.setTimeSpec(Qt::UTC); qDebug() << "UTC time is:" << UTC; qDebug() << "There are" << local.secsTo(UTC) << "seconds difference between the datetimes.";
另请参阅 timeSpec (), setDate (), setTime (), setTimeZone (),和 Qt::TimeSpec .
Sets the time zone used in this datetime to toZone . The datetime will refer to a different point in time.
若 toZone is invalid then the datetime will be invalid.
该函数在 Qt 5.2 引入。
另请参阅 timeZone () 和 Qt::TimeSpec .
Swaps this datetime with other 。此操作非常快且从不失败。
该函数在 Qt 5.0 引入。
Returns the time part of the datetime.
另请参阅 setTime (), date (),和 timeSpec ().
Returns the time specification of the datetime.
另请参阅 setTimeSpec (), date (), time (),和 Qt::TimeSpec .
Returns the time zone of the datetime.
若 timeSpec () 是 Qt::LocalTime then an instance of the current system time zone will be returned. Note however that if you copy this time zone the instance will not remain in sync if the system time zone changes.
该函数在 Qt 5.2 引入。
另请参阅 setTimeZone () 和 Qt::TimeSpec .
Returns the Time Zone Abbreviation for the datetime.
若 timeSpec () 是 Qt::UTC this will be "UTC".
若 timeSpec () 是 Qt::OffsetFromUTC this will be in the format "UTC[+-]00:00".
若 timeSpec () 是 Qt::LocalTime then the host system is queried for the correct abbreviation.
Note that abbreviations may or may not be localized.
Note too that the abbreviation is not guaranteed to be a unique value, i.e. different time zones may have the same abbreviation.
该函数在 Qt 5.2 引入。
另请参阅 timeSpec ().
创建 CFDate 从 QDateTime . The caller owns the CFDate object and is responsible for releasing it.
该函数在 Qt 5.5 引入。
另请参阅 fromCFDate ().
Returns a datetime containing the date and time information in this datetime, but specified using the Qt::LocalTime 定义。
范例:
QDateTime UTC(QDateTime::currentDateTimeUtc()); QDateTime local(UTC.toLocalTime()); qDebug() << "UTC time is:" << UTC; qDebug() << "Local time is:" << local; qDebug() << "No difference between times:" << UTC.secsTo(local);
另请参阅 toTimeSpec ().
Returns the datetime as the number of milliseconds that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ).
On systems that do not support time zones, this function will behave as if local time were Qt::UTC .
The behavior for this function is undefined if the datetime stored in this object is not valid. However, for all valid dates, this function returns a unique value.
该函数在 Qt 4.7 引入。
另请参阅 toSecsSinceEpoch () 和 setMSecsSinceEpoch ().
创建 NSDate 从 QDateTime . The NSDate object is autoreleased.
该函数在 Qt 5.5 引入。
另请参阅 fromNSDate ().
Returns a copy of this datetime converted to a spec of Qt::OffsetFromUTC 采用给定 offsetSeconds .
若 offsetSeconds equals 0 then a UTC datetime will be returned
该函数在 Qt 5.2 引入。
另请参阅 setOffsetFromUtc (), offsetFromUtc (),和 toTimeSpec ().
Returns the datetime as the number of seconds that have passed since 1970-01-01T00:00:00.000, Coordinated Universal Time ( Qt::UTC ).
On systems that do not support time zones, this function will behave as if local time were Qt::UTC .
The behavior for this function is undefined if the datetime stored in this object is not valid. However, for all valid dates, this function returns a unique value.
该函数在 Qt 5.8 引入。
另请参阅 toMSecsSinceEpoch () 和 setSecsSinceEpoch ().
以字符串形式返回 datetime。 format 参数确定结果字符串的格式。
These expressions may be used for the date:
表达式 | 输出 |
---|---|
d | the day as number without a leading zero (1 to 31) |
dd | the day as number with a leading zero (01 to 31) |
ddd | the abbreviated localized day name (e.g. 'Mon' to 'Sun'). Uses the system locale to localize the name, i.e. QLocale::system (). |
dddd | the long localized day name (e.g. 'Monday' to 'Sunday'). Uses the system locale to localize the name, i.e. QLocale::system (). |
M | the month as number without a leading zero (1-12) |
MM | the month as number with a leading zero (01-12) |
MMM | the abbreviated localized month name (e.g. 'Jan' to 'Dec'). Uses the system locale to localize the name, i.e. QLocale::system (). |
MMMM | the long localized month name (e.g. 'January' to 'December'). Uses the system locale to localize the name, i.e. QLocale::system (). |
yy | the year as two digit number (00-99) |
yyyy | the year as four digit number |
These expressions may be used for the time:
表达式 | 输出 |
---|---|
h | the hour without a leading zero (0 to 23 or 1 to 12 if AM/PM display) |
hh | the hour with a leading zero (00 to 23 or 01 to 12 if AM/PM display) |
H | the hour without a leading zero (0 to 23, even with AM/PM display) |
HH | the hour with a leading zero (00 to 23, even with AM/PM display) |
m | the minute without a leading zero (0 to 59) |
mm | the minute with a leading zero (00 to 59) |
s | the whole second without a leading zero (0 to 59) |
ss | the whole second with a leading zero where applicable (00 to 59) |
z |
the fractional part of the second, to go after a decimal point, without trailing zeroes (0 to 999). Thus "
s.z
" reports the seconds to full available (millisecond) precision without trailing zeroes.
|
zzz | the fractional part of the second, to millisecond precision, including trailing zeroes where applicable (000 to 999). |
AP or A | use AM/PM display. A/AP will be replaced by either "AM" or "PM". |
ap or a | use am/pm display. a/ap will be replaced by either "am" or "pm". |
t | the timezone (for example "CEST") |
All other input characters will be ignored. Any sequence of characters that are enclosed in single quotes will be treated as text and not be used as an expression. Two consecutive single quotes ("''") are replaced by a singlequote in the output. Formats without separators (e.g. "HHmm") are currently not supported.
Example format strings (assumed that the QDateTime is 21 May 2001 14:13:09.120):
格式 | 结果 |
---|---|
dd.MM.yyyy | 21.05.2001 |
ddd MMMM d yy | Tue May 21 01 |
hh:mm:ss.zzz | 14:13:09.120 |
hh:mm:ss.z | 14:13:09.12 |
h:m:s ap | 2:13:9 pm |
若日期时间无效,返回空字符串。
另请参阅 fromString (), QDate::toString (), QTime::toString (),和 QLocale::toString ().
这是重载函数。
以字符串形式返回日期时间按 format 给定。
若 format is Qt::TextDate , the string is formatted in the default way. QDate::shortDayName (), QDate::shortMonthName (),和 QTime::toString () are used to generate the string, so the day and month names will be localized names using the system locale, i.e. QLocale::system (). An example of this formatting is "Wed May 20 03:40:13 1998".
若 format is Qt::ISODate , the string format corresponds to the ISO 8601 extended specification for representations of dates and times, taking the form YYYY-MM-DDTHH:mm:ss[Z|[+|-]HH:mm], depending on the timeSpec () 对于 QDateTime 。若 timeSpec () 是 Qt::UTC , Z will be appended to the string; if the timeSpec () 是 Qt::OffsetFromUTC , the offset in hours and minutes from UTC will be appended to the string. To include milliseconds in the ISO 8601 date, use the format Qt::ISODateWithMs , which corresponds to YYYY-MM-DDTHH:mm:ss.zzz[Z|[+|-]HH:mm].
若 format is Qt::SystemLocaleShortDate or Qt::SystemLocaleLongDate , the string format depends on the locale settings of the system. Identical to calling QLocale::system (). toString (datetime, QLocale::ShortFormat ) 或 QLocale::system (). toString (datetime, QLocale::LongFormat ).
若 format is Qt::DefaultLocaleShortDate or Qt::DefaultLocaleLongDate , the string format depends on the default application locale. This is the locale set with QLocale::setDefault (), or the system locale if no default locale has been set. Identical to calling QLocale(). toString (datetime, QLocale::ShortFormat ) or QLocale(). toString (datetime, QLocale::LongFormat ).
若 format is Qt::RFC2822Date , the string is formatted following RFC 2822 .
若日期时间无效,返回空字符串。
警告: The Qt::ISODate format is only valid for years in the range 0 to 9999. This restriction may apply to locale-aware formats as well, depending on the locale settings.
另请参阅 fromString (), QDate::toString (), QTime::toString (),和 QLocale::toString ().
Returns a copy of this datetime converted to the given time spec .
若 spec is Qt::OffsetFromUTC 那么它被设为 Qt::UTC . To set to a spec of Qt::OffsetFromUTC 使用 toOffsetFromUtc ().
若 spec is Qt::TimeZone 那么它被设为 Qt::LocalTime , i.e. the local Time Zone.
范例:
QDateTime local(QDateTime::currentDateTime()); QDateTime UTC(local.toTimeSpec(Qt::UTC)); qDebug() << "Local time is:" << local; qDebug() << "UTC time is:" << UTC; qDebug() << "No difference between times:" << local.secsTo(UTC);
另请参阅 timeSpec (), toTimeZone (), toUTC (),和 toLocalTime ().
Returns a copy of this datetime converted to the given timeZone
该函数在 Qt 5.2 引入。
另请参阅 timeZone () 和 toTimeSpec ().
Returns a datetime containing the date and time information in this datetime, but specified using the Qt::UTC 定义。
范例:
QDateTime local(QDateTime::currentDateTime()); QDateTime UTC(local.toUTC()); qDebug() << "Local time is:" << local; qDebug() << "UTC time is:" << UTC; qDebug() << "No difference between times:" << local.secsTo(UTC);
另请参阅 toTimeSpec ().
返回
true
if this datetime is different from the
other
日期时间;否则返回
false
.
Two datetimes are different if either the date, the time, or the time zone components are different.
另请参阅 operator== ().
返回
true
if this datetime is earlier than the
other
日期时间;否则返回
false
.
返回
true
if this datetime is earlier than or equal to the
other
日期时间;否则返回
false
.
移动赋值运算符。
Makes a copy of the other datetime and returns a reference to the copy.
返回
true
if this datetime is equal to the
other
日期时间;否则返回
false
.
另请参阅 operator!= ().
返回
true
if this datetime is later than the
other
日期时间;否则返回
false
.
返回
true
if this datetime is later than or equal to the
other
日期时间;否则返回
false
.
写入 dateTime 到 out stream.
另请参阅 序列化 Qt 数据类型 .
Reads a datetime from the stream in into dateTime .
另请参阅 序列化 Qt 数据类型 .