3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > java >内容正文

java

Java-Class-C:java.util.Date

發布時間:2024/9/5 java 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Java-Class-C:java.util.Date 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
ylbtech-Java-Class-C:java.util.Date
Module?java.base Package?java.util

Class Date

  • java.lang.Object
    • java.util.Date
  • All Implemented Interfaces:
    Serializable,?Cloneable,?Comparable<Date>
    Direct Known Subclasses:
    Date,?Time,?Timestamp
1.返回頂部
1、
  • Constructor Summary

    ConstructorsConstructorDescriptionDate()Date?(int?year, int?month, int?date)Date?(int?year, int?month, int?date, int?hrs, int?min)Date?(int?year, int?month, int?date, int?hrs, int?min, int?sec)Date?(long?date)Date?(String?s)
    Allocates a?Date?object and initializes it so that it represents the time at which it was allocated, measured to the nearest millisecond.
    Deprecated. As of JDK version 1.1, replaced by?Calendar.set(year + 1900, month, date)?or?GregorianCalendar(year + 1900, month, date).
    Deprecated. As of JDK version 1.1, replaced by?Calendar.set(year + 1900, month, date, hrs, min)?or?GregorianCalendar(year + 1900, month, date, hrs, min).
    Deprecated. As of JDK version 1.1, replaced by?Calendar.set(year + 1900, month, date, hrs, min, sec)?or?GregorianCalendar(year + 1900, month, date, hrs, min, sec).
    Allocates a?Date?object and initializes it to represent the specified number of milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00 GMT.
    Deprecated. As of JDK version 1.1, replaced by?DateFormat.parse(String s).
  • Method Summary

    All MethodsStatic MethodsInstance MethodsConcrete MethodsDeprecated MethodsModifier and TypeMethodDescriptionafter?(Date?when)before?(Date?when)clone()compareTo?(Date?anotherDate)equals?(Object?obj)from?(Instant?instant)getDate()getDay()getHours()getMinutes()getMonth()getSeconds()getTime()getTimezoneOffset()getYear()hashCode()parse?(String?s)setDate?(int?date)setHours?(int?hours)setMinutes?(int?minutes)setMonth?(int?month)setSeconds?(int?seconds)setTime?(long?time)setYear?(int?year)toGMTString()toInstant()toLocaleString()toString()UTC?(int?year, int?month, int?date, int?hrs, int?min, int?sec)
    boolean Tests if this date is after the specified date.
    boolean Tests if this date is before the specified date.
    Object Return a copy of this object.
    int Compares two Dates for ordering.
    boolean Compares two dates for equality.
    static?Date Obtains an instance of?Date?from an?Instant?object.
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.DAY_OF_MONTH).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.DAY_OF_WEEK).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.HOUR_OF_DAY).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.MINUTE).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.MONTH).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.SECOND).
    long Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this?Date?object.
    int Deprecated. As of JDK version 1.1, replaced by?-(Calendar.get(Calendar.ZONE_OFFSET) + Calendar.get(Calendar.DST_OFFSET)) / (60 * 1000).
    int Deprecated. As of JDK version 1.1, replaced by?Calendar.get(Calendar.YEAR) - 1900.
    int Returns a hash code value for this object.
    static long Deprecated. As of JDK version 1.1, replaced by?DateFormat.parse(String s).
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.DAY_OF_MONTH, int date).
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.HOUR_OF_DAY, int hours).
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.MINUTE, int minutes).
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.MONTH, int month).
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.SECOND, int seconds).
    void Sets this?Date?object to represent a point in time that is?time?milliseconds after January 1, 1970 00:00:00 GMT.
    void Deprecated. As of JDK version 1.1, replaced by?Calendar.set(Calendar.YEAR, year + 1900).
    String Deprecated. As of JDK version 1.1, replaced by?DateFormat.format(Date date), using a GMT?TimeZone.
    Instant Converts this?Date?object to an?Instant.
    String Deprecated. As of JDK version 1.1, replaced by?DateFormat.format(Date date).
    String Converts this?Date?object to a?String?of the form:
    static long Deprecated. As of JDK version 1.1, replaced by?Calendar.set(year + 1900, month, date, hrs, min, sec)?or?GregorianCalendar(year + 1900, month, date, hrs, min, sec), using a UTC?TimeZone, followed by?Calendar.getTime().getTime().
2、
2.返回頂部
1、 import java.text.SimpleDateFormat; import java.util.Date;public class Main{public static void main(String[] args){SimpleDateFormat sdf = new SimpleDateFormat();// 格式化時間 sdf.applyPattern("yyyy-MM-dd HH:mm:ss a");// a為am/pm的標記 Date date = new Date();// 獲取當前時間 System.out.println("現在時間:" + sdf.format(date)); // 輸出已經格式化的現在時間(24小時制) } } 2、
3.返回頂部
4.返回頂部
1、 /** Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.util;import java.text.DateFormat; import java.time.LocalDate; import java.io.IOException; import java.io.ObjectOutputStream; import java.io.ObjectInputStream; import java.lang.ref.SoftReference; import java.time.Instant; import sun.util.calendar.BaseCalendar; import sun.util.calendar.CalendarDate; import sun.util.calendar.CalendarSystem; import sun.util.calendar.CalendarUtils; import sun.util.calendar.Era; import sun.util.calendar.Gregorian; import sun.util.calendar.ZoneInfo;/*** The class <code>Date</code> represents a specific instant* in time, with millisecond precision.* <p>* Prior to JDK&nbsp;1.1, the class <code>Date</code> had two additional* functions. It allowed the interpretation of dates as year, month, day, hour,* minute, and second values. It also allowed the formatting and parsing* of date strings. Unfortunately, the API for these functions was not* amenable to internationalization. As of JDK&nbsp;1.1, the* <code>Calendar</code> class should be used to convert between dates and time* fields and the <code>DateFormat</code> class should be used to format and* parse date strings.* The corresponding methods in <code>Date</code> are deprecated.* <p>* Although the <code>Date</code> class is intended to reflect* coordinated universal time (UTC), it may not do so exactly,* depending on the host environment of the Java Virtual Machine.* Nearly all modern operating systems assume that 1&nbsp;day&nbsp;=* 24&nbsp;&times;&nbsp;60&nbsp;&times;&nbsp;60&nbsp;= 86400 seconds* in all cases. In UTC, however, about once every year or two there* is an extra second, called a "leap second." The leap* second is always added as the last second of the day, and always* on December 31 or June 30. For example, the last minute of the* year 1995 was 61 seconds long, thanks to an added leap second.* Most computer clocks are not accurate enough to be able to reflect* the leap-second distinction.* <p>* Some computer standards are defined in terms of Greenwich mean* time (GMT), which is equivalent to universal time (UT). GMT is* the "civil" name for the standard; UT is the* "scientific" name for the same standard. The* distinction between UTC and UT is that UTC is based on an atomic* clock and UT is based on astronomical observations, which for all* practical purposes is an invisibly fine hair to split. Because the* earth's rotation is not uniform (it slows down and speeds up* in complicated ways), UT does not always flow uniformly. Leap* seconds are introduced as needed into UTC so as to keep UTC within* 0.9 seconds of UT1, which is a version of UT with certain* corrections applied. There are other time and date systems as* well; for example, the time scale used by the satellite-based* global positioning system (GPS) is synchronized to UTC but is* <i>not</i> adjusted for leap seconds. An interesting source of* further information is the U.S. Naval Observatory, particularly* the Directorate of Time at:* <blockquote><pre>* <a href=http://tycho.usno.navy.mil>http://tycho.usno.navy.mil</a>* </pre></blockquote>* <p>* and their definitions of "Systems of Time" at:* <blockquote><pre>* <a href=http://tycho.usno.navy.mil/systime.html>http://tycho.usno.navy.mil/systime.html</a>* </pre></blockquote>* <p>* In all methods of class <code>Date</code> that accept or return* year, month, date, hours, minutes, and seconds values, the* following representations are used:* <ul>* <li>A year <i>y</i> is represented by the integer* <i>y</i>&nbsp;<code>-&nbsp;1900</code>.* <li>A month is represented by an integer from 0 to 11; 0 is January,* 1 is February, and so forth; thus 11 is December.* <li>A date (day of month) is represented by an integer from 1 to 31* in the usual manner.* <li>An hour is represented by an integer from 0 to 23. Thus, the hour* from midnight to 1 a.m. is hour 0, and the hour from noon to 1* p.m. is hour 12.* <li>A minute is represented by an integer from 0 to 59 in the usual manner.* <li>A second is represented by an integer from 0 to 61; the values 60 and* 61 occur only for leap seconds and even then only in Java* implementations that actually track leap seconds correctly. Because* of the manner in which leap seconds are currently introduced, it is* extremely unlikely that two leap seconds will occur in the same* minute, but this specification follows the date and time conventions* for ISO C.* </ul>* <p>* In all cases, arguments given to methods for these purposes need* not fall within the indicated ranges; for example, a date may be* specified as January 32 and is interpreted as meaning February 1.** @author James Gosling* @author Arthur van Hoff* @author Alan Liu* @see java.text.DateFormat* @see java.util.Calendar* @see java.util.TimeZone* @since JDK1.0*/ public class Dateimplements java.io.Serializable, Cloneable, Comparable<Date> {private static final BaseCalendar gcal =CalendarSystem.getGregorianCalendar();private static BaseCalendar jcal;private transient long fastTime;/** If cdate is null, then fastTime indicates the time in millis.* If cdate.isNormalized() is true, then fastTime and cdate are in* synch. Otherwise, fastTime is ignored, and cdate indicates the* time.*/private transient BaseCalendar.Date cdate;// Initialized just before the value is used. See parse().private static int defaultCenturyStart;/* use serialVersionUID from modified java.util.Date for* interoperability with JDK1.1. The Date was modified to write* and read only the UTC time.*/private static final long serialVersionUID = 7523967970034938905L;/*** Allocates a <code>Date</code> object and initializes it so that* it represents the time at which it was allocated, measured to the* nearest millisecond.** @see java.lang.System#currentTimeMillis()*/public Date() {this(System.currentTimeMillis());}/*** Allocates a <code>Date</code> object and initializes it to* represent the specified number of milliseconds since the* standard base time known as "the epoch", namely January 1,* 1970, 00:00:00 GMT.** @param date the milliseconds since January 1, 1970, 00:00:00 GMT.* @see java.lang.System#currentTimeMillis()*/public Date(long date) {fastTime = date;}/*** Allocates a <code>Date</code> object and initializes it so that* it represents midnight, local time, at the beginning of the day* specified by the <code>year</code>, <code>month</code>, and* <code>date</code> arguments.** @param year the year minus 1900.* @param month the month between 0-11.* @param date the day of the month between 1-31.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date)</code>* or <code>GregorianCalendar(year + 1900, month, date)</code>.*/@Deprecatedpublic Date(int year, int month, int date) {this(year, month, date, 0, 0, 0);}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the instant at the start of the minute specified by* the <code>year</code>, <code>month</code>, <code>date</code>,* <code>hrs</code>, and <code>min</code> arguments, in the local* time zone.** @param year the year minus 1900.* @param month the month between 0-11.* @param date the day of the month between 1-31.* @param hrs the hours between 0-23.* @param min the minutes between 0-59.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date,* hrs, min)</code> or <code>GregorianCalendar(year + 1900,* month, date, hrs, min)</code>.*/@Deprecatedpublic Date(int year, int month, int date, int hrs, int min) {this(year, month, date, hrs, min, 0);}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the instant at the start of the second specified* by the <code>year</code>, <code>month</code>, <code>date</code>,* <code>hrs</code>, <code>min</code>, and <code>sec</code> arguments,* in the local time zone.** @param year the year minus 1900.* @param month the month between 0-11.* @param date the day of the month between 1-31.* @param hrs the hours between 0-23.* @param min the minutes between 0-59.* @param sec the seconds between 0-59.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date,* hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,* month, date, hrs, min, sec)</code>.*/@Deprecatedpublic Date(int year, int month, int date, int hrs, int min, int sec) {int y = year + 1900;// month is 0-based. So we have to normalize month to support Long.MAX_VALUE.if (month >= 12) {y += month / 12;month %= 12;} else if (month < 0) {y += CalendarUtils.floorDivide(month, 12);month = CalendarUtils.mod(month, 12);}BaseCalendar cal = getCalendarSystem(y);cdate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.getDefaultRef());cdate.setNormalizedDate(y, month + 1, date).setTimeOfDay(hrs, min, sec, 0);getTimeImpl();cdate = null;}/*** Allocates a <code>Date</code> object and initializes it so that* it represents the date and time indicated by the string* <code>s</code>, which is interpreted as if by the* {@link Date#parse} method.** @param s a string representation of the date.* @see java.text.DateFormat* @see java.util.Date#parse(java.lang.String)* @deprecated As of JDK version 1.1,* replaced by <code>DateFormat.parse(String s)</code>.*/@Deprecatedpublic Date(String s) {this(parse(s));}/*** Return a copy of this object.*/public Object clone() {Date d = null;try {d = (Date)super.clone();if (cdate != null) {d.cdate = (BaseCalendar.Date) cdate.clone();}} catch (CloneNotSupportedException e) {} // Won't happenreturn d;}/*** Determines the date and time based on the arguments. The* arguments are interpreted as a year, month, day of the month,* hour of the day, minute within the hour, and second within the* minute, exactly as for the <tt>Date</tt> constructor with six* arguments, except that the arguments are interpreted relative* to UTC rather than to the local time zone. The time indicated is* returned represented as the distance, measured in milliseconds,* of that time from the epoch (00:00:00 GMT on January 1, 1970).** @param year the year minus 1900.* @param month the month between 0-11.* @param date the day of the month between 1-31.* @param hrs the hours between 0-23.* @param min the minutes between 0-59.* @param sec the seconds between 0-59.* @return the number of milliseconds since January 1, 1970, 00:00:00 GMT for* the date and time specified by the arguments.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(year + 1900, month, date,* hrs, min, sec)</code> or <code>GregorianCalendar(year + 1900,* month, date, hrs, min, sec)</code>, using a UTC* <code>TimeZone</code>, followed by <code>Calendar.getTime().getTime()</code>.*/@Deprecatedpublic static long UTC(int year, int month, int date,int hrs, int min, int sec) {int y = year + 1900;// month is 0-based. So we have to normalize month to support Long.MAX_VALUE.if (month >= 12) {y += month / 12;month %= 12;} else if (month < 0) {y += CalendarUtils.floorDivide(month, 12);month = CalendarUtils.mod(month, 12);}int m = month + 1;BaseCalendar cal = getCalendarSystem(y);BaseCalendar.Date udate = (BaseCalendar.Date) cal.newCalendarDate(null);udate.setNormalizedDate(y, m, date).setTimeOfDay(hrs, min, sec, 0);// Use a Date instance to perform normalization. Its fastTime// is the UTC value after the normalization.Date d = new Date(0);d.normalize(udate);return d.fastTime;}/*** Attempts to interpret the string <tt>s</tt> as a representation* of a date and time. If the attempt is successful, the time* indicated is returned represented as the distance, measured in* milliseconds, of that time from the epoch (00:00:00 GMT on* January 1, 1970). If the attempt fails, an* <tt>IllegalArgumentException</tt> is thrown.* <p>* It accepts many syntaxes; in particular, it recognizes the IETF* standard date syntax: "Sat, 12 Aug 1995 13:30:00 GMT". It also* understands the continental U.S. time-zone abbreviations, but for* general use, a time-zone offset should be used: "Sat, 12 Aug 1995* 13:30:00 GMT+0430" (4 hours, 30 minutes west of the Greenwich* meridian). If no time zone is specified, the local time zone is* assumed. GMT and UTC are considered equivalent.* <p>* The string <tt>s</tt> is processed from left to right, looking for* data of interest. Any material in <tt>s</tt> that is within the* ASCII parenthesis characters <tt>(</tt> and <tt>)</tt> is ignored.* Parentheses may be nested. Otherwise, the only characters permitted* within <tt>s</tt> are these ASCII characters:* <blockquote><pre>* abcdefghijklmnopqrstuvwxyz* ABCDEFGHIJKLMNOPQRSTUVWXYZ* 0123456789,+-:/</pre></blockquote>* and whitespace characters.<p>* A consecutive sequence of decimal digits is treated as a decimal* number:<ul>* <li>If a number is preceded by <tt>+</tt> or <tt>-</tt> and a year* has already been recognized, then the number is a time-zone* offset. If the number is less than 24, it is an offset measured* in hours. Otherwise, it is regarded as an offset in minutes,* expressed in 24-hour time format without punctuation. A* preceding <tt>-</tt> means a westward offset. Time zone offsets* are always relative to UTC (Greenwich). Thus, for example,* <tt>-5</tt> occurring in the string would mean "five hours west* of Greenwich" and <tt>+0430</tt> would mean "four hours and* thirty minutes east of Greenwich." It is permitted for the* string to specify <tt>GMT</tt>, <tt>UT</tt>, or <tt>UTC</tt>* redundantly-for example, <tt>GMT-5</tt> or <tt>utc+0430</tt>.* <li>The number is regarded as a year number if one of the* following conditions is true:* <ul>* <li>The number is equal to or greater than 70 and followed by a* space, comma, slash, or end of string* <li>The number is less than 70, and both a month and a day of* the month have already been recognized</li>* </ul>* If the recognized year number is less than 100, it is* interpreted as an abbreviated year relative to a century of* which dates are within 80 years before and 19 years after* the time when the Date class is initialized.* After adjusting the year number, 1900 is subtracted from* it. For example, if the current year is 1999 then years in* the range 19 to 99 are assumed to mean 1919 to 1999, while* years from 0 to 18 are assumed to mean 2000 to 2018. Note* that this is slightly different from the interpretation of* years less than 100 that is used in {@link java.text.SimpleDateFormat}.* <li>If the number is followed by a colon, it is regarded as an hour,* unless an hour has already been recognized, in which case it is* regarded as a minute.* <li>If the number is followed by a slash, it is regarded as a month* (it is decreased by 1 to produce a number in the range <tt>0</tt>* to <tt>11</tt>), unless a month has already been recognized, in* which case it is regarded as a day of the month.* <li>If the number is followed by whitespace, a comma, a hyphen, or* end of string, then if an hour has been recognized but not a* minute, it is regarded as a minute; otherwise, if a minute has* been recognized but not a second, it is regarded as a second;* otherwise, it is regarded as a day of the month. </ul><p>* A consecutive sequence of letters is regarded as a word and treated* as follows:<ul>* <li>A word that matches <tt>AM</tt>, ignoring case, is ignored (but* the parse fails if an hour has not been recognized or is less* than <tt>1</tt> or greater than <tt>12</tt>).* <li>A word that matches <tt>PM</tt>, ignoring case, adds <tt>12</tt>* to the hour (but the parse fails if an hour has not been* recognized or is less than <tt>1</tt> or greater than <tt>12</tt>).* <li>Any word that matches any prefix of <tt>SUNDAY, MONDAY, TUESDAY,* WEDNESDAY, THURSDAY, FRIDAY</tt>, or <tt>SATURDAY</tt>, ignoring* case, is ignored. For example, <tt>sat, Friday, TUE</tt>, and* <tt>Thurs</tt> are ignored.* <li>Otherwise, any word that matches any prefix of <tt>JANUARY,* FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER,* OCTOBER, NOVEMBER</tt>, or <tt>DECEMBER</tt>, ignoring case, and* considering them in the order given here, is recognized as* specifying a month and is converted to a number (<tt>0</tt> to* <tt>11</tt>). For example, <tt>aug, Sept, april</tt>, and* <tt>NOV</tt> are recognized as months. So is <tt>Ma</tt>, which* is recognized as <tt>MARCH</tt>, not <tt>MAY</tt>.* <li>Any word that matches <tt>GMT, UT</tt>, or <tt>UTC</tt>, ignoring* case, is treated as referring to UTC.* <li>Any word that matches <tt>EST, CST, MST</tt>, or <tt>PST</tt>,* ignoring case, is recognized as referring to the time zone in* North America that is five, six, seven, or eight hours west of* Greenwich, respectively. Any word that matches <tt>EDT, CDT,* MDT</tt>, or <tt>PDT</tt>, ignoring case, is recognized as* referring to the same time zone, respectively, during daylight* saving time.</ul><p>* Once the entire string s has been scanned, it is converted to a time* result in one of two ways. If a time zone or time-zone offset has been* recognized, then the year, month, day of month, hour, minute, and* second are interpreted in UTC and then the time-zone offset is* applied. Otherwise, the year, month, day of month, hour, minute, and* second are interpreted in the local time zone.** @param s a string to be parsed as a date.* @return the number of milliseconds since January 1, 1970, 00:00:00 GMT* represented by the string argument.* @see java.text.DateFormat* @deprecated As of JDK version 1.1,* replaced by <code>DateFormat.parse(String s)</code>.*/@Deprecatedpublic static long parse(String s) {int year = Integer.MIN_VALUE;int mon = -1;int mday = -1;int hour = -1;int min = -1;int sec = -1;int millis = -1;int c = -1;int i = 0;int n = -1;int wst = -1;int tzoffset = -1;int prevc = 0;syntax:{if (s == null)break syntax;int limit = s.length();while (i < limit) {c = s.charAt(i);i++;if (c <= ' ' || c == ',')continue;if (c == '(') { // skip commentsint depth = 1;while (i < limit) {c = s.charAt(i);i++;if (c == '(') depth++;else if (c == ')')if (--depth <= 0)break;}continue;}if ('0' <= c && c <= '9') {n = c - '0';while (i < limit && '0' <= (c = s.charAt(i)) && c <= '9') {n = n * 10 + c - '0';i++;}if (prevc == '+' || prevc == '-' && year != Integer.MIN_VALUE) {// timezone offsetif (n < 24)n = n * 60; // EG. "GMT-3"elsen = n % 100 + n / 100 * 60; // eg "GMT-0430"if (prevc == '+') // plus means east of GMTn = -n;if (tzoffset != 0 && tzoffset != -1)break syntax;tzoffset = n;} else if (n >= 70)if (year != Integer.MIN_VALUE)break syntax;else if (c <= ' ' || c == ',' || c == '/' || i >= limit)// year = n < 1900 ? n : n - 1900;year = n;elsebreak syntax;else if (c == ':')if (hour < 0)hour = (byte) n;else if (min < 0)min = (byte) n;elsebreak syntax;else if (c == '/')if (mon < 0)mon = (byte) (n - 1);else if (mday < 0)mday = (byte) n;elsebreak syntax;else if (i < limit && c != ',' && c > ' ' && c != '-')break syntax;else if (hour >= 0 && min < 0)min = (byte) n;else if (min >= 0 && sec < 0)sec = (byte) n;else if (mday < 0)mday = (byte) n;// Handle two-digit years < 70 (70-99 handled above).else if (year == Integer.MIN_VALUE && mon >= 0 && mday >= 0)year = n;elsebreak syntax;prevc = 0;} else if (c == '/' || c == ':' || c == '+' || c == '-')prevc = c;else {int st = i - 1;while (i < limit) {c = s.charAt(i);if (!('A' <= c && c <= 'Z' || 'a' <= c && c <= 'z'))break;i++;}if (i <= st + 1)break syntax;int k;for (k = wtb.length; --k >= 0;)if (wtb[k].regionMatches(true, 0, s, st, i - st)) {int action = ttb[k];if (action != 0) {if (action == 1) { // pmif (hour > 12 || hour < 1)break syntax;else if (hour < 12)hour += 12;} else if (action == 14) { // amif (hour > 12 || hour < 1)break syntax;else if (hour == 12)hour = 0;} else if (action <= 13) { // month!if (mon < 0)mon = (byte) (action - 2);elsebreak syntax;} else {tzoffset = action - 10000;}}break;}if (k < 0)break syntax;prevc = 0;}}if (year == Integer.MIN_VALUE || mon < 0 || mday < 0)break syntax;// Parse 2-digit years within the correct default century.if (year < 100) {synchronized (Date.class) {if (defaultCenturyStart == 0) {defaultCenturyStart = gcal.getCalendarDate().getYear() - 80;}}year += (defaultCenturyStart / 100) * 100;if (year < defaultCenturyStart) year += 100;}if (sec < 0)sec = 0;if (min < 0)min = 0;if (hour < 0)hour = 0;BaseCalendar cal = getCalendarSystem(year);if (tzoffset == -1) { // no time zone specified, have to use localBaseCalendar.Date ldate = (BaseCalendar.Date) cal.newCalendarDate(TimeZone.getDefaultRef());ldate.setDate(year, mon + 1, mday);ldate.setTimeOfDay(hour, min, sec, 0);return cal.getTime(ldate);}BaseCalendar.Date udate = (BaseCalendar.Date) cal.newCalendarDate(null); // no time zoneudate.setDate(year, mon + 1, mday);udate.setTimeOfDay(hour, min, sec, 0);return cal.getTime(udate) + tzoffset * (60 * 1000);}// syntax errorthrow new IllegalArgumentException();}private final static String wtb[] = {"am", "pm","monday", "tuesday", "wednesday", "thursday", "friday","saturday", "sunday","january", "february", "march", "april", "may", "june","july", "august", "september", "october", "november", "december","gmt", "ut", "utc", "est", "edt", "cst", "cdt","mst", "mdt", "pst", "pdt"};private final static int ttb[] = {14, 1, 0, 0, 0, 0, 0, 0, 0,2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,10000 + 0, 10000 + 0, 10000 + 0, // GMT/UT/UTC10000 + 5 * 60, 10000 + 4 * 60, // EST/EDT10000 + 6 * 60, 10000 + 5 * 60, // CST/CDT10000 + 7 * 60, 10000 + 6 * 60, // MST/MDT10000 + 8 * 60, 10000 + 7 * 60 // PST/PDT };/*** Returns a value that is the result of subtracting 1900 from the* year that contains or begins with the instant in time represented* by this <code>Date</code> object, as interpreted in the local* time zone.** @return the year represented by this date, minus 1900.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.YEAR) - 1900</code>.*/@Deprecatedpublic int getYear() {return normalize().getYear() - 1900;}/*** Sets the year of this <tt>Date</tt> object to be the specified* value plus 1900. This <code>Date</code> object is modified so* that it represents a point in time within the specified year,* with the month, date, hour, minute, and second the same as* before, as interpreted in the local time zone. (Of course, if* the date was February 29, for example, and the year is set to a* non-leap year, then the new date will be treated as if it were* on March 1.)** @param year the year value.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.YEAR, year + 1900)</code>.*/@Deprecatedpublic void setYear(int year) {getCalendarDate().setNormalizedYear(year + 1900);}/*** Returns a number representing the month that contains or begins* with the instant in time represented by this <tt>Date</tt> object.* The value returned is between <code>0</code> and <code>11</code>,* with the value <code>0</code> representing January.** @return the month represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.MONTH)</code>.*/@Deprecatedpublic int getMonth() {return normalize().getMonth() - 1; // adjust 1-based to 0-based }/*** Sets the month of this date to the specified value. This* <tt>Date</tt> object is modified so that it represents a point* in time within the specified month, with the year, date, hour,* minute, and second the same as before, as interpreted in the* local time zone. If the date was October 31, for example, and* the month is set to June, then the new date will be treated as* if it were on July 1, because June has only 30 days.** @param month the month value between 0-11.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.MONTH, int month)</code>.*/@Deprecatedpublic void setMonth(int month) {int y = 0;if (month >= 12) {y = month / 12;month %= 12;} else if (month < 0) {y = CalendarUtils.floorDivide(month, 12);month = CalendarUtils.mod(month, 12);}BaseCalendar.Date d = getCalendarDate();if (y != 0) {d.setNormalizedYear(d.getNormalizedYear() + y);}d.setMonth(month + 1); // adjust 0-based to 1-based month numbering }/*** Returns the day of the month represented by this <tt>Date</tt> object.* The value returned is between <code>1</code> and <code>31</code>* representing the day of the month that contains or begins with the* instant in time represented by this <tt>Date</tt> object, as* interpreted in the local time zone.** @return the day of the month represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.DAY_OF_MONTH)</code>.* @deprecated*/@Deprecatedpublic int getDate() {return normalize().getDayOfMonth();}/*** Sets the day of the month of this <tt>Date</tt> object to the* specified value. This <tt>Date</tt> object is modified so that* it represents a point in time within the specified day of the* month, with the year, month, hour, minute, and second the same* as before, as interpreted in the local time zone. If the date* was April 30, for example, and the date is set to 31, then it* will be treated as if it were on May 1, because April has only* 30 days.** @param date the day of the month value between 1-31.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.DAY_OF_MONTH, int date)</code>.*/@Deprecatedpublic void setDate(int date) {getCalendarDate().setDayOfMonth(date);}/*** Returns the day of the week represented by this date. The* returned value (<tt>0</tt> = Sunday, <tt>1</tt> = Monday,* <tt>2</tt> = Tuesday, <tt>3</tt> = Wednesday, <tt>4</tt> =* Thursday, <tt>5</tt> = Friday, <tt>6</tt> = Saturday)* represents the day of the week that contains or begins with* the instant in time represented by this <tt>Date</tt> object,* as interpreted in the local time zone.** @return the day of the week represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.DAY_OF_WEEK)</code>.*/@Deprecatedpublic int getDay() {return normalize().getDayOfWeek() - BaseCalendar.SUNDAY;}/*** Returns the hour represented by this <tt>Date</tt> object. The* returned value is a number (<tt>0</tt> through <tt>23</tt>)* representing the hour within the day that contains or begins* with the instant in time represented by this <tt>Date</tt>* object, as interpreted in the local time zone.** @return the hour represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.HOUR_OF_DAY)</code>.*/@Deprecatedpublic int getHours() {return normalize().getHours();}/*** Sets the hour of this <tt>Date</tt> object to the specified value.* This <tt>Date</tt> object is modified so that it represents a point* in time within the specified hour of the day, with the year, month,* date, minute, and second the same as before, as interpreted in the* local time zone.** @param hours the hour value.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.HOUR_OF_DAY, int hours)</code>.*/@Deprecatedpublic void setHours(int hours) {getCalendarDate().setHours(hours);}/*** Returns the number of minutes past the hour represented by this date,* as interpreted in the local time zone.* The value returned is between <code>0</code> and <code>59</code>.** @return the number of minutes past the hour represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.MINUTE)</code>.*/@Deprecatedpublic int getMinutes() {return normalize().getMinutes();}/*** Sets the minutes of this <tt>Date</tt> object to the specified value.* This <tt>Date</tt> object is modified so that it represents a point* in time within the specified minute of the hour, with the year, month,* date, hour, and second the same as before, as interpreted in the* local time zone.** @param minutes the value of the minutes.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.MINUTE, int minutes)</code>.*/@Deprecatedpublic void setMinutes(int minutes) {getCalendarDate().setMinutes(minutes);}/*** Returns the number of seconds past the minute represented by this date.* The value returned is between <code>0</code> and <code>61</code>. The* values <code>60</code> and <code>61</code> can only occur on those* Java Virtual Machines that take leap seconds into account.** @return the number of seconds past the minute represented by this date.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.get(Calendar.SECOND)</code>.*/@Deprecatedpublic int getSeconds() {return normalize().getSeconds();}/*** Sets the seconds of this <tt>Date</tt> to the specified value.* This <tt>Date</tt> object is modified so that it represents a* point in time within the specified second of the minute, with* the year, month, date, hour, and minute the same as before, as* interpreted in the local time zone.** @param seconds the seconds value.* @see java.util.Calendar* @deprecated As of JDK version 1.1,* replaced by <code>Calendar.set(Calendar.SECOND, int seconds)</code>.*/@Deprecatedpublic void setSeconds(int seconds) {getCalendarDate().setSeconds(seconds);}/*** Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT* represented by this <tt>Date</tt> object.** @return the number of milliseconds since January 1, 1970, 00:00:00 GMT* represented by this date.*/public long getTime() {return getTimeImpl();}private final long getTimeImpl() {if (cdate != null && !cdate.isNormalized()) {normalize();}return fastTime;}/*** Sets this <code>Date</code> object to represent a point in time that is* <code>time</code> milliseconds after January 1, 1970 00:00:00 GMT.** @param time the number of milliseconds.*/public void setTime(long time) {fastTime = time;cdate = null;}/*** Tests if this date is before the specified date.** @param when a date.* @return <code>true</code> if and only if the instant of time* represented by this <tt>Date</tt> object is strictly* earlier than the instant represented by <tt>when</tt>;* <code>false</code> otherwise.* @exception NullPointerException if <code>when</code> is null.*/public boolean before(Date when) {return getMillisOf(this) < getMillisOf(when);}/*** Tests if this date is after the specified date.** @param when a date.* @return <code>true</code> if and only if the instant represented* by this <tt>Date</tt> object is strictly later than the* instant represented by <tt>when</tt>;* <code>false</code> otherwise.* @exception NullPointerException if <code>when</code> is null.*/public boolean after(Date when) {return getMillisOf(this) > getMillisOf(when);}/*** Compares two dates for equality.* The result is <code>true</code> if and only if the argument is* not <code>null</code> and is a <code>Date</code> object that* represents the same point in time, to the millisecond, as this object.* <p>* Thus, two <code>Date</code> objects are equal if and only if the* <code>getTime</code> method returns the same <code>long</code>* value for both.** @param obj the object to compare with.* @return <code>true</code> if the objects are the same;* <code>false</code> otherwise.* @see java.util.Date#getTime()*/public boolean equals(Object obj) {return obj instanceof Date && getTime() == ((Date) obj).getTime();}/*** Returns the millisecond value of this <code>Date</code> object* without affecting its internal state.*/static final long getMillisOf(Date date) {if (date.cdate == null || date.cdate.isNormalized()) {return date.fastTime;}BaseCalendar.Date d = (BaseCalendar.Date) date.cdate.clone();return gcal.getTime(d);}/*** Compares two Dates for ordering.** @param anotherDate the <code>Date</code> to be compared.* @return the value <code>0</code> if the argument Date is equal to* this Date; a value less than <code>0</code> if this Date* is before the Date argument; and a value greater than* <code>0</code> if this Date is after the Date argument.* @since 1.2* @exception NullPointerException if <code>anotherDate</code> is null.*/public int compareTo(Date anotherDate) {long thisTime = getMillisOf(this);long anotherTime = getMillisOf(anotherDate);return (thisTime<anotherTime ? -1 : (thisTime==anotherTime ? 0 : 1));}/*** Returns a hash code value for this object. The result is the* exclusive OR of the two halves of the primitive <tt>long</tt>* value returned by the {@link Date#getTime}* method. That is, the hash code is the value of the expression:* <blockquote><pre>{@code* (int)(this.getTime()^(this.getTime() >>> 32))* }</pre></blockquote>** @return a hash code value for this object.*/public int hashCode() {long ht = this.getTime();return (int) ht ^ (int) (ht >> 32);}/*** Converts this <code>Date</code> object to a <code>String</code>* of the form:* <blockquote><pre>* dow mon dd hh:mm:ss zzz yyyy</pre></blockquote>* where:<ul>* <li><tt>dow</tt> is the day of the week (<tt>Sun, Mon, Tue, Wed,* Thu, Fri, Sat</tt>).* <li><tt>mon</tt> is the month (<tt>Jan, Feb, Mar, Apr, May, Jun,* Jul, Aug, Sep, Oct, Nov, Dec</tt>).* <li><tt>dd</tt> is the day of the month (<tt>01</tt> through* <tt>31</tt>), as two decimal digits.* <li><tt>hh</tt> is the hour of the day (<tt>00</tt> through* <tt>23</tt>), as two decimal digits.* <li><tt>mm</tt> is the minute within the hour (<tt>00</tt> through* <tt>59</tt>), as two decimal digits.* <li><tt>ss</tt> is the second within the minute (<tt>00</tt> through* <tt>61</tt>, as two decimal digits.* <li><tt>zzz</tt> is the time zone (and may reflect daylight saving* time). Standard time zone abbreviations include those* recognized by the method <tt>parse</tt>. If time zone* information is not available, then <tt>zzz</tt> is empty -* that is, it consists of no characters at all.* <li><tt>yyyy</tt> is the year, as four decimal digits.* </ul>** @return a string representation of this date.* @see java.util.Date#toLocaleString()* @see java.util.Date#toGMTString()*/public String toString() {// "EEE MMM dd HH:mm:ss zzz yyyy";BaseCalendar.Date date = normalize();StringBuilder sb = new StringBuilder(28);int index = date.getDayOfWeek();if (index == BaseCalendar.SUNDAY) {index = 8;}convertToAbbr(sb, wtb[index]).append(' '); // EEEconvertToAbbr(sb, wtb[date.getMonth() - 1 + 2 + 7]).append(' '); // MMMCalendarUtils.sprintf0d(sb, date.getDayOfMonth(), 2).append(' '); // dd CalendarUtils.sprintf0d(sb, date.getHours(), 2).append(':'); // HHCalendarUtils.sprintf0d(sb, date.getMinutes(), 2).append(':'); // mmCalendarUtils.sprintf0d(sb, date.getSeconds(), 2).append(' '); // ssTimeZone zi = date.getZone();if (zi != null) {sb.append(zi.getDisplayName(date.isDaylightTime(), TimeZone.SHORT, Locale.US)); // zzz} else {sb.append("GMT");}sb.append(' ').append(date.getYear()); // yyyyreturn sb.toString();}/*** Converts the given name to its 3-letter abbreviation (e.g.,* "monday" -> "Mon") and stored the abbreviation in the given* <code>StringBuilder</code>.*/private static final StringBuilder convertToAbbr(StringBuilder sb, String name) {sb.append(Character.toUpperCase(name.charAt(0)));sb.append(name.charAt(1)).append(name.charAt(2));return sb;}/*** Creates a string representation of this <tt>Date</tt> object in an* implementation-dependent form. The intent is that the form should* be familiar to the user of the Java application, wherever it may* happen to be running. The intent is comparable to that of the* "<code>%c</code>" format supported by the <code>strftime()</code>* function of ISO&nbsp;C.** @return a string representation of this date, using the locale* conventions.* @see java.text.DateFormat* @see java.util.Date#toString()* @see java.util.Date#toGMTString()* @deprecated As of JDK version 1.1,* replaced by <code>DateFormat.format(Date date)</code>.*/@Deprecatedpublic String toLocaleString() {DateFormat formatter = DateFormat.getDateTimeInstance();return formatter.format(this);}/*** Creates a string representation of this <tt>Date</tt> object of* the form:* <blockquote><pre>* d mon yyyy hh:mm:ss GMT</pre></blockquote>* where:<ul>* <li><i>d</i> is the day of the month (<tt>1</tt> through <tt>31</tt>),* as one or two decimal digits.* <li><i>mon</i> is the month (<tt>Jan, Feb, Mar, Apr, May, Jun, Jul,* Aug, Sep, Oct, Nov, Dec</tt>).* <li><i>yyyy</i> is the year, as four decimal digits.* <li><i>hh</i> is the hour of the day (<tt>00</tt> through <tt>23</tt>),* as two decimal digits.* <li><i>mm</i> is the minute within the hour (<tt>00</tt> through* <tt>59</tt>), as two decimal digits.* <li><i>ss</i> is the second within the minute (<tt>00</tt> through* <tt>61</tt>), as two decimal digits.* <li><i>GMT</i> is exactly the ASCII letters "<tt>GMT</tt>" to indicate* Greenwich Mean Time.* </ul><p>* The result does not depend on the local time zone.** @return a string representation of this date, using the Internet GMT* conventions.* @see java.text.DateFormat* @see java.util.Date#toString()* @see java.util.Date#toLocaleString()* @deprecated As of JDK version 1.1,* replaced by <code>DateFormat.format(Date date)</code>, using a* GMT <code>TimeZone</code>.*/@Deprecatedpublic String toGMTString() {// d MMM yyyy HH:mm:ss 'GMT'long t = getTime();BaseCalendar cal = getCalendarSystem(t);BaseCalendar.Date date =(BaseCalendar.Date) cal.getCalendarDate(getTime(), (TimeZone)null);StringBuilder sb = new StringBuilder(32);CalendarUtils.sprintf0d(sb, date.getDayOfMonth(), 1).append(' '); // dconvertToAbbr(sb, wtb[date.getMonth() - 1 + 2 + 7]).append(' '); // MMMsb.append(date.getYear()).append(' '); // yyyyCalendarUtils.sprintf0d(sb, date.getHours(), 2).append(':'); // HHCalendarUtils.sprintf0d(sb, date.getMinutes(), 2).append(':'); // mmCalendarUtils.sprintf0d(sb, date.getSeconds(), 2); // sssb.append(" GMT"); // ' GMT'return sb.toString();}/*** Returns the offset, measured in minutes, for the local time zone* relative to UTC that is appropriate for the time represented by* this <code>Date</code> object.* <p>* For example, in Massachusetts, five time zones west of Greenwich:* <blockquote><pre>* new Date(96, 1, 14).getTimezoneOffset() returns 300</pre></blockquote>* because on February 14, 1996, standard time (Eastern Standard Time)* is in use, which is offset five hours from UTC; but:* <blockquote><pre>* new Date(96, 5, 1).getTimezoneOffset() returns 240</pre></blockquote>* because on June 1, 1996, daylight saving time (Eastern Daylight Time)* is in use, which is offset only four hours from UTC.<p>* This method produces the same result as if it computed:* <blockquote><pre>* (this.getTime() - UTC(this.getYear(),* this.getMonth(),* this.getDate(),* this.getHours(),* this.getMinutes(),* this.getSeconds())) / (60 * 1000)* </pre></blockquote>** @return the time-zone offset, in minutes, for the current time zone.* @see java.util.Calendar#ZONE_OFFSET* @see java.util.Calendar#DST_OFFSET* @see java.util.TimeZone#getDefault* @deprecated As of JDK version 1.1,* replaced by <code>-(Calendar.get(Calendar.ZONE_OFFSET) +* Calendar.get(Calendar.DST_OFFSET)) / (60 * 1000)</code>.*/@Deprecatedpublic int getTimezoneOffset() {int zoneOffset;if (cdate == null) {TimeZone tz = TimeZone.getDefaultRef();if (tz instanceof ZoneInfo) {zoneOffset = ((ZoneInfo)tz).getOffsets(fastTime, null);} else {zoneOffset = tz.getOffset(fastTime);}} else {normalize();zoneOffset = cdate.getZoneOffset();}return -zoneOffset/60000; // convert to minutes }private final BaseCalendar.Date getCalendarDate() {if (cdate == null) {BaseCalendar cal = getCalendarSystem(fastTime);cdate = (BaseCalendar.Date) cal.getCalendarDate(fastTime,TimeZone.getDefaultRef());}return cdate;}private final BaseCalendar.Date normalize() {if (cdate == null) {BaseCalendar cal = getCalendarSystem(fastTime);cdate = (BaseCalendar.Date) cal.getCalendarDate(fastTime,TimeZone.getDefaultRef());return cdate;}// Normalize cdate with the TimeZone in cdate first. This is// required for the compatible behavior.if (!cdate.isNormalized()) {cdate = normalize(cdate);}// If the default TimeZone has changed, then recalculate the// fields with the new TimeZone.TimeZone tz = TimeZone.getDefaultRef();if (tz != cdate.getZone()) {cdate.setZone(tz);CalendarSystem cal = getCalendarSystem(cdate);cal.getCalendarDate(fastTime, cdate);}return cdate;}// fastTime and the returned data are in sync upon return.private final BaseCalendar.Date normalize(BaseCalendar.Date date) {int y = date.getNormalizedYear();int m = date.getMonth();int d = date.getDayOfMonth();int hh = date.getHours();int mm = date.getMinutes();int ss = date.getSeconds();int ms = date.getMillis();TimeZone tz = date.getZone();// If the specified year can't be handled using a long value// in milliseconds, GregorianCalendar is used for full// compatibility with underflow and overflow. This is required// by some JCK tests. The limits are based max year values -// years that can be represented by max values of d, hh, mm,// ss and ms. Also, let GregorianCalendar handle the default// cutover year so that we don't need to worry about the// transition here.if (y == 1582 || y > 280000000 || y < -280000000) {if (tz == null) {tz = TimeZone.getTimeZone("GMT");}GregorianCalendar gc = new GregorianCalendar(tz);gc.clear();gc.set(GregorianCalendar.MILLISECOND, ms);gc.set(y, m-1, d, hh, mm, ss);fastTime = gc.getTimeInMillis();BaseCalendar cal = getCalendarSystem(fastTime);date = (BaseCalendar.Date) cal.getCalendarDate(fastTime, tz);return date;}BaseCalendar cal = getCalendarSystem(y);if (cal != getCalendarSystem(date)) {date = (BaseCalendar.Date) cal.newCalendarDate(tz);date.setNormalizedDate(y, m, d).setTimeOfDay(hh, mm, ss, ms);}// Perform the GregorianCalendar-style normalization.fastTime = cal.getTime(date);// In case the normalized date requires the other calendar// system, we need to recalculate it using the other one.BaseCalendar ncal = getCalendarSystem(fastTime);if (ncal != cal) {date = (BaseCalendar.Date) ncal.newCalendarDate(tz);date.setNormalizedDate(y, m, d).setTimeOfDay(hh, mm, ss, ms);fastTime = ncal.getTime(date);}return date;}/*** Returns the Gregorian or Julian calendar system to use with the* given date. Use Gregorian from October 15, 1582.** @param year normalized calendar year (not -1900)* @return the CalendarSystem to use for the specified date*/private static final BaseCalendar getCalendarSystem(int year) {if (year >= 1582) {return gcal;}return getJulianCalendar();}private static final BaseCalendar getCalendarSystem(long utc) {// Quickly check if the time stamp given by `utc' is the Epoch// or later. If it's before 1970, we convert the cutover to// local time to compare.if (utc >= 0|| utc >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER- TimeZone.getDefaultRef().getOffset(utc)) {return gcal;}return getJulianCalendar();}private static final BaseCalendar getCalendarSystem(BaseCalendar.Date cdate) {if (jcal == null) {return gcal;}if (cdate.getEra() != null) {return jcal;}return gcal;}synchronized private static final BaseCalendar getJulianCalendar() {if (jcal == null) {jcal = (BaseCalendar) CalendarSystem.forName("julian");}return jcal;}/*** Save the state of this object to a stream (i.e., serialize it).** @serialData The value returned by <code>getTime()</code>* is emitted (long). This represents the offset from* January 1, 1970, 00:00:00 GMT in milliseconds.*/private void writeObject(ObjectOutputStream s)throws IOException{s.writeLong(getTimeImpl());}/*** Reconstitute this object from a stream (i.e., deserialize it).*/private void readObject(ObjectInputStream s)throws IOException, ClassNotFoundException{fastTime = s.readLong();}/*** Obtains an instance of {@code Date} from an {@code Instant} object.* <p>* {@code Instant} uses a precision of nanoseconds, whereas {@code Date}* uses a precision of milliseconds. The conversion will trancate any* excess precision information as though the amount in nanoseconds was* subject to integer division by one million.* <p>* {@code Instant} can store points on the time-line further in the future* and further in the past than {@code Date}. In this scenario, this method* will throw an exception.** @param instant the instant to convert* @return a {@code Date} representing the same point on the time-line as* the provided instant* @exception NullPointerException if {@code instant} is null.* @exception IllegalArgumentException if the instant is too large to* represent as a {@code Date}* @since 1.8*/public static Date from(Instant instant) {try {return new Date(instant.toEpochMilli());} catch (ArithmeticException ex) {throw new IllegalArgumentException(ex);}}/*** Converts this {@code Date} object to an {@code Instant}.* <p>* The conversion creates an {@code Instant} that represents the same* point on the time-line as this {@code Date}.** @return an instant representing the same point on the time-line as* this {@code Date} object* @since 1.8*/public Instant toInstant() {return Instant.ofEpochMilli(getTime());} } 2、
5.返回頂部
0、 https://docs.oracle.com/javase/10/docs/api/java/util/Date.html 1、
6.返回頂部
作者:ylbtech
出處:http://ylbtech.cnblogs.com/
本文版權歸作者和博客園共有,歡迎轉載,但未經作者同意必須保留此段聲明,且在文章頁面明顯位置給出原文連接,否則保留追究法律責任的權利。

轉載于:https://www.cnblogs.com/storebook/p/10572890.html

總結

以上是生活随笔為你收集整理的Java-Class-C:java.util.Date的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

国内揄拍国内精品人妻 | 一个人看的视频www在线 | 国产成人午夜福利在线播放 | 牛和人交xxxx欧美 | 精品国产福利一区二区 | 国产亚洲日韩欧美另类第八页 | www国产精品内射老师 | 国产人妻久久精品二区三区老狼 | 国产精品久久久av久久久 | 亚洲一区二区三区 | 亚洲综合另类小说色区 | 亚洲人交乣女bbw | 精品无码av一区二区三区 | 老子影院午夜精品无码 | 人妻人人添人妻人人爱 | 精品国产精品久久一区免费式 | 欧洲美熟女乱又伦 | 国产偷国产偷精品高清尤物 | 久久久成人毛片无码 | 中文字幕无码免费久久9一区9 | 色五月丁香五月综合五月 | 日本熟妇乱子伦xxxx | 18无码粉嫩小泬无套在线观看 | 极品尤物被啪到呻吟喷水 | 亚洲中文字幕无码中文字在线 | 中文久久乱码一区二区 | 久久99久久99精品中文字幕 | 伊人久久大香线蕉午夜 | 亚洲午夜无码久久 | 曰韩无码二三区中文字幕 | 无码人妻av免费一区二区三区 | 天堂无码人妻精品一区二区三区 | 欧美日韩久久久精品a片 | 国产色精品久久人妻 | 青青久在线视频免费观看 | 国产舌乚八伦偷品w中 | 中文字幕+乱码+中文字幕一区 | 国产一区二区三区日韩精品 | 精品无码国产自产拍在线观看蜜 | 亚洲中文字幕无码中文字在线 | 亚洲区小说区激情区图片区 | 亚洲国产成人av在线观看 | 粉嫩少妇内射浓精videos | 国产精品美女久久久久av爽李琼 | 欧美精品在线观看 | 久久久久久久女国产乱让韩 | 国产在线无码精品电影网 | 国产女主播喷水视频在线观看 | 久久zyz资源站无码中文动漫 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 免费国产黄网站在线观看 | 欧美精品一区二区精品久久 | 日本xxxx色视频在线观看免费 | 成人欧美一区二区三区黑人免费 | 日产精品99久久久久久 | 亚洲精品美女久久久久久久 | 麻豆成人精品国产免费 | 久久成人a毛片免费观看网站 | 精品一二三区久久aaa片 | 人人妻人人澡人人爽欧美一区 | 中文亚洲成a人片在线观看 | 纯爱无遮挡h肉动漫在线播放 | 中文字幕亚洲情99在线 | 少妇被粗大的猛进出69影院 | 人妻少妇精品无码专区动漫 | 天天拍夜夜添久久精品大 | 亚洲精品中文字幕久久久久 | 亚洲狠狠色丁香婷婷综合 | 一区二区三区乱码在线 | 欧洲 | 老子影院午夜精品无码 | 国产精品永久免费视频 | 99在线 | 亚洲 | 亚洲成av人片在线观看无码不卡 | 久久综合香蕉国产蜜臀av | v一区无码内射国产 | 精品无码一区二区三区的天堂 | 国产亚洲精品久久久久久久 | 老熟女乱子伦 | 国产欧美亚洲精品a | 中文字幕无码av波多野吉衣 | 日日碰狠狠丁香久燥 | 老熟女乱子伦 | 黄网在线观看免费网站 | 久久精品丝袜高跟鞋 | 欧洲美熟女乱又伦 | 国产办公室秘书无码精品99 | 人妻插b视频一区二区三区 | 国产乱人偷精品人妻a片 | 野狼第一精品社区 | 四虎国产精品免费久久 | 日本成熟视频免费视频 | 高潮毛片无遮挡高清免费视频 | www一区二区www免费 | 波多野42部无码喷潮在线 | 99久久精品午夜一区二区 | 无码人妻丰满熟妇区毛片18 | 美女毛片一区二区三区四区 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 性史性农村dvd毛片 | 在线成人www免费观看视频 | 东京热男人av天堂 | 亚洲精品成人福利网站 | 曰韩少妇内射免费播放 | 在线 国产 欧美 亚洲 天堂 | 国产无套粉嫩白浆在线 | 黄网在线观看免费网站 | 精品无码国产一区二区三区av | 一区二区三区高清视频一 | 日日摸天天摸爽爽狠狠97 | 国产精品久久福利网站 | 日韩精品成人一区二区三区 | 欧美第一黄网免费网站 | 国产偷抇久久精品a片69 | 亚洲第一无码av无码专区 | 无码国产色欲xxxxx视频 | 少妇人妻大乳在线视频 | 国产精品毛片一区二区 | 一本加勒比波多野结衣 | 国产精品多人p群无码 | 在线视频网站www色 | 国产精品无码永久免费888 | 国产精品久久久久无码av色戒 | 中文字幕日韩精品一区二区三区 | 东京热男人av天堂 | 久久久久免费看成人影片 | 99久久精品国产一区二区蜜芽 | 蜜臀av无码人妻精品 | 国语自产偷拍精品视频偷 | 欧洲vodafone精品性 | 人人超人人超碰超国产 | 亚洲欧美精品aaaaaa片 | 荫蒂被男人添的好舒服爽免费视频 | 蜜桃臀无码内射一区二区三区 | 国产精品a成v人在线播放 | 欧美性生交活xxxxxdddd | 日日碰狠狠丁香久燥 | √天堂资源地址中文在线 | 国产精品久久久av久久久 | 2020久久香蕉国产线看观看 | 国产suv精品一区二区五 | 国产精品人人爽人人做我的可爱 | 日韩在线不卡免费视频一区 | 人人妻人人澡人人爽欧美精品 | 久热国产vs视频在线观看 | 亚洲色大成网站www国产 | 国产亲子乱弄免费视频 | 国产亚洲人成在线播放 | 人人妻人人澡人人爽精品欧美 | 亚洲一区二区三区含羞草 | 日本xxxx色视频在线观看免费 | 高潮毛片无遮挡高清免费视频 | 嫩b人妻精品一区二区三区 | √天堂资源地址中文在线 | 欧美老妇交乱视频在线观看 | 欧洲精品码一区二区三区免费看 | 51国偷自产一区二区三区 | 麻豆果冻传媒2021精品传媒一区下载 | 中文字幕日产无线码一区 | 欧美日本免费一区二区三区 | 国产精品人人爽人人做我的可爱 | 久久久久久九九精品久 | 精品国产乱码久久久久乱码 | 桃花色综合影院 | 无码纯肉视频在线观看 | 国产人妻人伦精品 | 成年美女黄网站色大免费全看 | 日韩精品乱码av一区二区 | 无码av免费一区二区三区试看 | 中文字幕人妻无码一夲道 | 久久人人爽人人人人片 | 国产成人av免费观看 | 99re在线播放 | 欧美熟妇另类久久久久久多毛 | 狠狠亚洲超碰狼人久久 | 欧美熟妇另类久久久久久不卡 | 国内揄拍国内精品少妇国语 | 亚洲精品综合一区二区三区在线 | 性色欲网站人妻丰满中文久久不卡 | 国内精品人妻无码久久久影院蜜桃 | 国产精品久久久一区二区三区 | 99久久精品无码一区二区毛片 | 亚洲熟妇色xxxxx亚洲 | 欧美日本免费一区二区三区 | 日产精品高潮呻吟av久久 | 草草网站影院白丝内射 | 久久国产精品精品国产色婷婷 | 日韩无码专区 | 在线a亚洲视频播放在线观看 | 日韩人妻少妇一区二区三区 | 免费国产黄网站在线观看 | 成人精品视频一区二区 | 中文字幕乱码人妻二区三区 | 激情五月综合色婷婷一区二区 | 毛片内射-百度 | a在线亚洲男人的天堂 | 99久久久国产精品无码免费 | 18无码粉嫩小泬无套在线观看 | 亚洲 激情 小说 另类 欧美 | 国产av剧情md精品麻豆 | 日韩人妻无码中文字幕视频 | 精品国产一区av天美传媒 | 熟妇人妻无乱码中文字幕 | 中文字幕 人妻熟女 | 亚洲七七久久桃花影院 | 波多野结衣av一区二区全免费观看 | 天天综合网天天综合色 | 日日天干夜夜狠狠爱 | 国产精品久久久 | 人妻少妇精品无码专区动漫 | 天堂久久天堂av色综合 | 麻豆国产人妻欲求不满 | 久久久久亚洲精品男人的天堂 | 国产精品高潮呻吟av久久 | 无码国内精品人妻少妇 | 国产黄在线观看免费观看不卡 | 国产精品美女久久久久av爽李琼 | 亚洲一区二区三区香蕉 | 97久久国产亚洲精品超碰热 | 人人澡人摸人人添 | 国产免费久久久久久无码 | 久久综合久久自在自线精品自 | 偷窥日本少妇撒尿chinese | 成人精品视频一区二区三区尤物 | 亚洲成av人影院在线观看 | www国产亚洲精品久久久日本 | 国产精品-区区久久久狼 | 97久久国产亚洲精品超碰热 | 欧美亚洲日韩国产人成在线播放 | 精品国偷自产在线视频 | 亚洲成av人影院在线观看 | 在线欧美精品一区二区三区 | 无码午夜成人1000部免费视频 | 久久国语露脸国产精品电影 | 装睡被陌生人摸出水好爽 | 免费无码一区二区三区蜜桃大 | 日韩精品一区二区av在线 | 熟女少妇人妻中文字幕 | 人妻少妇精品无码专区动漫 | 国产精品资源一区二区 | 装睡被陌生人摸出水好爽 | 成人性做爰aaa片免费看不忠 | 成人无码视频在线观看网站 | 97久久国产亚洲精品超碰热 | 任你躁在线精品免费 | 丰满人妻一区二区三区免费视频 | 大乳丰满人妻中文字幕日本 | 久久久久免费看成人影片 | 亚洲国产精品美女久久久久 | 丰满人妻精品国产99aⅴ | 少妇性荡欲午夜性开放视频剧场 | 99久久99久久免费精品蜜桃 | 99久久精品国产一区二区蜜芽 | 老司机亚洲精品影院无码 | 男人扒开女人内裤强吻桶进去 | 国产午夜亚洲精品不卡下载 | 日欧一片内射va在线影院 | 成人av无码一区二区三区 | 精品一区二区三区无码免费视频 | v一区无码内射国产 | 日本va欧美va欧美va精品 | 好爽又高潮了毛片免费下载 | 色偷偷人人澡人人爽人人模 | 国产人妻人伦精品1国产丝袜 | 国产亚洲精品久久久久久久 | 成人亚洲精品久久久久 | 中文字幕无线码免费人妻 | 亚洲成a人片在线观看日本 | 国产 精品 自在自线 | 国产做国产爱免费视频 | 国产成人无码区免费内射一片色欲 | 纯爱无遮挡h肉动漫在线播放 | 色窝窝无码一区二区三区色欲 | 在线播放无码字幕亚洲 | 青春草在线视频免费观看 | 亚洲 高清 成人 动漫 | 免费看少妇作爱视频 | 成人片黄网站色大片免费观看 | 久久久久久国产精品无码下载 | 亚洲色欲色欲天天天www | 亚洲欧洲无卡二区视頻 | 中文字幕无码日韩专区 | 88国产精品欧美一区二区三区 | 综合网日日天干夜夜久久 | 野外少妇愉情中文字幕 | 久久久久se色偷偷亚洲精品av | 亚洲精品美女久久久久久久 | 无码任你躁久久久久久久 | 欧美亚洲日韩国产人成在线播放 | 波多野结衣av在线观看 | 亚洲色欲色欲欲www在线 | 欧美日韩精品 | 日韩人妻少妇一区二区三区 | 99riav国产精品视频 | 5858s亚洲色大成网站www | 无码国产色欲xxxxx视频 | 午夜不卡av免费 一本久久a久久精品vr综合 | 国内揄拍国内精品少妇国语 | 色综合久久久无码中文字幕 | 国内老熟妇对白xxxxhd | 99精品久久毛片a片 | 亚洲国产精品一区二区美利坚 | 国产精品久久久久久久9999 | 免费看男女做好爽好硬视频 | 色一情一乱一伦一区二区三欧美 | 成在人线av无码免费 | 亚洲成色www久久网站 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 欧美精品国产综合久久 | 亚洲另类伦春色综合小说 | 丝袜足控一区二区三区 | 久久zyz资源站无码中文动漫 | 在线欧美精品一区二区三区 | 97精品人妻一区二区三区香蕉 | 欧美怡红院免费全部视频 | 欧美黑人乱大交 | 高潮喷水的毛片 | 国产精品igao视频网 | 一本久道久久综合婷婷五月 | 99久久99久久免费精品蜜桃 | 人人妻人人澡人人爽欧美一区九九 | √天堂资源地址中文在线 | 蜜臀aⅴ国产精品久久久国产老师 | 人妻aⅴ无码一区二区三区 | 色老头在线一区二区三区 | 一个人免费观看的www视频 | 免费无码午夜福利片69 | 中文字幕日韩精品一区二区三区 | 久久久久亚洲精品中文字幕 | 亚洲国产精品无码久久久久高潮 | 国产精品无码一区二区桃花视频 | 嫩b人妻精品一区二区三区 | 国产97人人超碰caoprom | 中文字幕无码日韩专区 | 亚洲理论电影在线观看 | 沈阳熟女露脸对白视频 | 激情综合激情五月俺也去 | 国产午夜精品一区二区三区嫩草 | 久久精品视频在线看15 | 思思久久99热只有频精品66 | 国产精品亚洲综合色区韩国 | 国产成人综合在线女婷五月99播放 | 久久久久久av无码免费看大片 | 性欧美疯狂xxxxbbbb | 欧洲美熟女乱又伦 | 在线观看国产一区二区三区 | 亚洲色欲色欲欲www在线 | 国产av久久久久精东av | 综合网日日天干夜夜久久 | 精品人妻中文字幕有码在线 | 亚洲精品久久久久中文第一幕 | www成人国产高清内射 | 国产猛烈高潮尖叫视频免费 | 亚洲国产精品久久人人爱 | 国产精品永久免费视频 | 久久亚洲a片com人成 | 日韩精品一区二区av在线 | 亚洲乱码国产乱码精品精 | 天下第一社区视频www日本 | 77777熟女视频在线观看 а天堂中文在线官网 | 欧美黑人性暴力猛交喷水 | 男女爱爱好爽视频免费看 | 国产精品永久免费视频 | 国产精品美女久久久久av爽李琼 | 成人亚洲精品久久久久软件 | 欧美刺激性大交 | 亚洲熟女一区二区三区 | 六十路熟妇乱子伦 | 国产人妻精品午夜福利免费 | 久久99精品久久久久婷婷 | 国产亚洲精品久久久久久大师 | 久久99精品国产.久久久久 | 中国女人内谢69xxxxxa片 | 亚洲日韩中文字幕在线播放 | 300部国产真实乱 | 亚洲狠狠色丁香婷婷综合 | 日韩精品无码一区二区中文字幕 | 国产97在线 | 亚洲 | 欧美日韩亚洲国产精品 | 欧美xxxx黑人又粗又长 | 亚洲综合无码一区二区三区 | 97久久国产亚洲精品超碰热 | 中文字幕乱码亚洲无线三区 | 久精品国产欧美亚洲色aⅴ大片 | 国产办公室秘书无码精品99 | 青草青草久热国产精品 | 免费人成网站视频在线观看 | 欧美激情一区二区三区成人 | 欧洲熟妇色 欧美 | 亚洲日韩av片在线观看 | 又色又爽又黄的美女裸体网站 | 日本www一道久久久免费榴莲 | 国产精华av午夜在线观看 | 国产精品久久久午夜夜伦鲁鲁 | 人人爽人人澡人人高潮 | www国产精品内射老师 | 亚洲爆乳无码专区 | 久久五月精品中文字幕 | 人妻中文无码久热丝袜 | 乱码午夜-极国产极内射 | 水蜜桃av无码 | 中文字幕人妻无码一区二区三区 | 97精品人妻一区二区三区香蕉 | 俺去俺来也在线www色官网 | 亚洲啪av永久无码精品放毛片 | 久久99精品久久久久久动态图 | а√天堂www在线天堂小说 | 成人aaa片一区国产精品 | 青青青手机频在线观看 | 亚洲一区二区三区含羞草 | 激情内射亚州一区二区三区爱妻 | 亚洲精品午夜无码电影网 | 亚洲熟妇色xxxxx亚洲 | 无码人妻丰满熟妇区五十路百度 | 欧美猛少妇色xxxxx | 亚洲人成影院在线观看 | 亚洲无人区午夜福利码高清完整版 | 亚洲狠狠色丁香婷婷综合 | 狠狠色噜噜狠狠狠7777奇米 | а√资源新版在线天堂 | 日韩欧美群交p片內射中文 | 人妻人人添人妻人人爱 | 综合激情五月综合激情五月激情1 | 3d动漫精品啪啪一区二区中 | 国产精品亚洲五月天高清 | 狂野欧美性猛xxxx乱大交 | 成人精品一区二区三区中文字幕 | 99riav国产精品视频 | 亚洲娇小与黑人巨大交 | 三上悠亚人妻中文字幕在线 | 日日夜夜撸啊撸 | 日本精品高清一区二区 | 日本在线高清不卡免费播放 | 精品一区二区三区无码免费视频 | 久久精品成人欧美大片 | 久久久无码中文字幕久... | 伊人久久婷婷五月综合97色 | 午夜熟女插插xx免费视频 | 精品一区二区三区波多野结衣 | 亚洲日韩乱码中文无码蜜桃臀网站 | 亚洲日韩中文字幕在线播放 | 午夜成人1000部免费视频 | 成人精品视频一区二区 | 欧美日韩色另类综合 | 97人妻精品一区二区三区 | 国产乱人伦av在线无码 | 日本一本二本三区免费 | 亚洲乱码中文字幕在线 | 欧美xxxxx精品 | 色五月五月丁香亚洲综合网 | 日本饥渴人妻欲求不满 | 日韩欧美群交p片內射中文 | 亚洲午夜久久久影院 | 日本www一道久久久免费榴莲 | 内射巨臀欧美在线视频 | 亚洲七七久久桃花影院 | 88国产精品欧美一区二区三区 | 国产免费久久久久久无码 | 亚洲国产成人a精品不卡在线 | 欧美丰满熟妇xxxx | 国产精品嫩草久久久久 | 亚洲の无码国产の无码步美 | 宝宝好涨水快流出来免费视频 | 亚洲一区二区三区无码久久 | 精品少妇爆乳无码av无码专区 | 真人与拘做受免费视频 | 国产激情综合五月久久 | 欧洲欧美人成视频在线 | 亚洲自偷自拍另类第1页 | 精品一区二区三区波多野结衣 | 精品欧美一区二区三区久久久 | 亚洲精品午夜无码电影网 | 国产精品香蕉在线观看 | 中文字幕无码日韩欧毛 | 国产精品久久久一区二区三区 | 性欧美疯狂xxxxbbbb | 国产卡一卡二卡三 | 少妇太爽了在线观看 | 国产三级精品三级男人的天堂 | а√天堂www在线天堂小说 | 色噜噜亚洲男人的天堂 | 久久久久国色av免费观看性色 | 国产舌乚八伦偷品w中 | 波多野结衣高清一区二区三区 | 中文亚洲成a人片在线观看 | 丝袜 中出 制服 人妻 美腿 | 久久久婷婷五月亚洲97号色 | 狠狠cao日日穞夜夜穞av | 国产乱人偷精品人妻a片 | 伊人久久婷婷五月综合97色 | 国产精品无码一区二区桃花视频 | 婷婷丁香六月激情综合啪 | 四虎影视成人永久免费观看视频 | 国产综合在线观看 | 无码一区二区三区在线 | 国产女主播喷水视频在线观看 | 丰满妇女强制高潮18xxxx | 无码中文字幕色专区 | 狠狠噜狠狠狠狠丁香五月 | 精品亚洲成av人在线观看 | 亚洲国产欧美在线成人 | 爱做久久久久久 | 国产精品99爱免费视频 | 国产免费无码一区二区视频 | 亚洲国产日韩a在线播放 | 在教室伦流澡到高潮hnp视频 | 亚洲人亚洲人成电影网站色 | 天天摸天天透天天添 | 国产精品18久久久久久麻辣 | 四十如虎的丰满熟妇啪啪 | 亚洲高清偷拍一区二区三区 | 国产女主播喷水视频在线观看 | 国产成人综合美国十次 | 亚洲熟悉妇女xxx妇女av | 精品熟女少妇av免费观看 | 成人毛片一区二区 | 鲁鲁鲁爽爽爽在线视频观看 | 无码国内精品人妻少妇 | 国产免费无码一区二区视频 | 白嫩日本少妇做爰 | 日本精品人妻无码免费大全 | 蜜桃av抽搐高潮一区二区 | 中文精品久久久久人妻不卡 | 午夜免费福利小电影 | 国产熟女一区二区三区四区五区 | 高清国产亚洲精品自在久久 | 亚洲成a人一区二区三区 | 亚洲成色www久久网站 | 一本久久伊人热热精品中文字幕 | 亚洲精品www久久久 | 久久国内精品自在自线 | 国产精品人人爽人人做我的可爱 | 成人aaa片一区国产精品 | av香港经典三级级 在线 | 久久精品人人做人人综合 | 日本精品人妻无码免费大全 | 婷婷五月综合激情中文字幕 | 国产无套粉嫩白浆在线 | 色噜噜亚洲男人的天堂 | 性欧美videos高清精品 | 久久久精品国产sm最大网站 | 亚洲精品www久久久 | 国产网红无码精品视频 | 久久国产精品精品国产色婷婷 | 麻豆av传媒蜜桃天美传媒 | 内射老妇bbwx0c0ck | 欧美老熟妇乱xxxxx | 日韩精品久久久肉伦网站 | 日日摸夜夜摸狠狠摸婷婷 | 亚洲中文字幕在线观看 | 午夜丰满少妇性开放视频 | 亚洲日韩中文字幕在线播放 | 人妻少妇被猛烈进入中文字幕 | 国产一精品一av一免费 | 国产无套粉嫩白浆在线 | 性色欲网站人妻丰满中文久久不卡 | 成人三级无码视频在线观看 | 荫蒂添的好舒服视频囗交 | 亚洲人成影院在线观看 | 欧洲精品码一区二区三区免费看 | 国产精品亚洲五月天高清 | 成人av无码一区二区三区 | 久久综合久久自在自线精品自 | 亚洲区小说区激情区图片区 | 真人与拘做受免费视频一 | 亚洲精品久久久久avwww潮水 | 亚洲成a人一区二区三区 | 国产精品久久久久久亚洲影视内衣 | 日韩欧美中文字幕在线三区 | 水蜜桃av无码 | 蜜桃臀无码内射一区二区三区 | 三上悠亚人妻中文字幕在线 | 亚洲色大成网站www | 夫妻免费无码v看片 | 久久国内精品自在自线 | 精品国产麻豆免费人成网站 | 亚洲综合在线一区二区三区 | 国产肉丝袜在线观看 | 国色天香社区在线视频 | 久久久久久a亚洲欧洲av冫 | 又大又紧又粉嫩18p少妇 | 中文字幕无线码免费人妻 | 巨爆乳无码视频在线观看 | 领导边摸边吃奶边做爽在线观看 | 成人影院yy111111在线观看 | av在线亚洲欧洲日产一区二区 | 精品国产一区二区三区四区 | 无码人妻丰满熟妇区五十路百度 | 狠狠噜狠狠狠狠丁香五月 | 精品人妻人人做人人爽 | 秋霞成人午夜鲁丝一区二区三区 | 色一情一乱一伦一区二区三欧美 | 久久99精品国产麻豆蜜芽 | 人妻无码αv中文字幕久久琪琪布 | 中文字幕av伊人av无码av | 国产舌乚八伦偷品w中 | 亚洲精品国产第一综合99久久 | 伊人色综合久久天天小片 | 日本护士xxxxhd少妇 | √天堂资源地址中文在线 | 亚无码乱人伦一区二区 | 亚洲aⅴ无码成人网站国产app | 国产乱人伦偷精品视频 | 澳门永久av免费网站 | 久久久中文久久久无码 | 国产精品怡红院永久免费 | 扒开双腿吃奶呻吟做受视频 | 成熟人妻av无码专区 | 国产精品怡红院永久免费 | 亚洲小说图区综合在线 | 精品水蜜桃久久久久久久 | 无码av岛国片在线播放 | 亚洲精品欧美二区三区中文字幕 | 国产麻豆精品一区二区三区v视界 | 麻豆果冻传媒2021精品传媒一区下载 | 97精品人妻一区二区三区香蕉 | 装睡被陌生人摸出水好爽 | 亚洲精品国偷拍自产在线麻豆 | 亚洲综合无码一区二区三区 | 99精品国产综合久久久久五月天 | 色诱久久久久综合网ywww | 日日橹狠狠爱欧美视频 | 色欲综合久久中文字幕网 | 鲁鲁鲁爽爽爽在线视频观看 | 国产成人亚洲综合无码 | 精品无码成人片一区二区98 | 久久午夜无码鲁丝片午夜精品 | 国产精品va在线观看无码 | 国产真人无遮挡作爱免费视频 | 成人片黄网站色大片免费观看 | 国产精品鲁鲁鲁 | 欧美人与动性行为视频 | 欧美 亚洲 国产 另类 | 少妇性俱乐部纵欲狂欢电影 | 亚洲の无码国产の无码影院 | 波多野结衣乳巨码无在线观看 | 日韩 欧美 动漫 国产 制服 | 精品国产乱码久久久久乱码 | 少妇性俱乐部纵欲狂欢电影 | 亚洲色欲久久久综合网东京热 | 娇妻被黑人粗大高潮白浆 | 天海翼激烈高潮到腰振不止 | 中文字幕中文有码在线 | 国产成人一区二区三区在线观看 | 国产精品成人av在线观看 | 久久精品国产一区二区三区肥胖 | 人人爽人人澡人人高潮 | 成人免费视频视频在线观看 免费 | 性欧美熟妇videofreesex | 亚洲熟悉妇女xxx妇女av | 国产免费久久久久久无码 | 精品国产一区二区三区av 性色 | 国产人妻精品午夜福利免费 | 狠狠色噜噜狠狠狠狠7777米奇 | 一个人看的视频www在线 | 色婷婷欧美在线播放内射 | 亚洲呦女专区 | 亚洲熟女一区二区三区 | 精品国产精品久久一区免费式 | 亚洲日韩乱码中文无码蜜桃臀网站 | 亚洲国产精品一区二区美利坚 | 欧美成人家庭影院 | 久久 国产 尿 小便 嘘嘘 | 熟女俱乐部五十路六十路av | 无套内射视频囯产 | √天堂中文官网8在线 | 又大又硬又黄的免费视频 | 国产熟女一区二区三区四区五区 | 亚洲综合无码一区二区三区 | 亚洲欧美国产精品专区久久 | 无码播放一区二区三区 | 亚洲色无码一区二区三区 | av在线亚洲欧洲日产一区二区 | 国产在线无码精品电影网 | 强伦人妻一区二区三区视频18 | 国产精品亚洲а∨无码播放麻豆 | 亚洲国产午夜精品理论片 | 亚洲人成网站色7799 | 午夜精品一区二区三区在线观看 | 国产欧美熟妇另类久久久 | 国产suv精品一区二区五 | 亚洲中文无码av永久不收费 | 无码人妻精品一区二区三区不卡 | 久久久av男人的天堂 | 久久精品人人做人人综合试看 | 国产无套粉嫩白浆在线 | 色综合久久久久综合一本到桃花网 | 中文精品无码中文字幕无码专区 | 伊在人天堂亚洲香蕉精品区 | 国产猛烈高潮尖叫视频免费 | 无码福利日韩神码福利片 | 小泽玛莉亚一区二区视频在线 | 天天爽夜夜爽夜夜爽 | 日本一区二区三区免费高清 | 国产成人无码专区 | 免费乱码人妻系列无码专区 | 久久久久久国产精品无码下载 | 六月丁香婷婷色狠狠久久 | 曰韩无码二三区中文字幕 | 天堂а√在线中文在线 | 激情爆乳一区二区三区 | 亚洲熟悉妇女xxx妇女av | 99久久久无码国产精品免费 | 午夜熟女插插xx免费视频 | 国产精品福利视频导航 | 久久精品国产大片免费观看 | 少妇被粗大的猛进出69影院 | 美女毛片一区二区三区四区 | 中文字幕久久久久人妻 | 午夜福利一区二区三区在线观看 | 永久免费观看国产裸体美女 | 久久国产精品二国产精品 | 高清无码午夜福利视频 | 嫩b人妻精品一区二区三区 | 妺妺窝人体色www婷婷 | 永久免费观看美女裸体的网站 | 色诱久久久久综合网ywww | 久久久久久久久888 | 国产黄在线观看免费观看不卡 | 亚洲一区av无码专区在线观看 | 无码人妻出轨黑人中文字幕 | 中文字幕av日韩精品一区二区 | 蜜桃臀无码内射一区二区三区 | 国产精品二区一区二区aⅴ污介绍 | 人人妻人人澡人人爽欧美一区九九 | 亚洲日韩av片在线观看 | 日本熟妇浓毛 | 玩弄少妇高潮ⅹxxxyw | 国产亚av手机在线观看 | 日日麻批免费40分钟无码 | 大胆欧美熟妇xx | 欧美35页视频在线观看 | 十八禁视频网站在线观看 | 精品偷拍一区二区三区在线看 | 亚洲综合久久一区二区 | 亚洲精品国产精品乱码视色 | 欧美性生交xxxxx久久久 | 欧美 日韩 人妻 高清 中文 | 亚洲精品成人av在线 | 熟妇女人妻丰满少妇中文字幕 | 日本一卡2卡3卡四卡精品网站 | 正在播放老肥熟妇露脸 | 欧美午夜特黄aaaaaa片 | 300部国产真实乱 | 国产精品手机免费 | 国产成人无码av一区二区 | 中文字幕av日韩精品一区二区 | 啦啦啦www在线观看免费视频 | 国产精品香蕉在线观看 | 国产婷婷色一区二区三区在线 | 久久久久人妻一区精品色欧美 | 成人综合网亚洲伊人 | 内射老妇bbwx0c0ck | 中国女人内谢69xxxxxa片 | 亚洲成av人片天堂网无码】 | 国产无遮挡又黄又爽免费视频 | 99国产精品白浆在线观看免费 | 亚洲精品一区二区三区在线 | 欧美性生交活xxxxxdddd | 日日摸夜夜摸狠狠摸婷婷 | 在线观看免费人成视频 | 国产人成高清在线视频99最全资源 | 久久99久久99精品中文字幕 | 野外少妇愉情中文字幕 | 国产成人无码区免费内射一片色欲 | 丝袜足控一区二区三区 | 无人区乱码一区二区三区 | 国产成人精品三级麻豆 | 成年美女黄网站色大免费全看 | 亚洲国产精品一区二区美利坚 | 久久五月精品中文字幕 | 无码成人精品区在线观看 | 久久久久成人精品免费播放动漫 | 人妻无码久久精品人妻 | 成人av无码一区二区三区 | 国产一区二区不卡老阿姨 | 日本大香伊一区二区三区 | 亚洲高清偷拍一区二区三区 | 少妇高潮一区二区三区99 | 全球成人中文在线 | 久久国语露脸国产精品电影 | 国产精品人人爽人人做我的可爱 | 国产日产欧产精品精品app | 欧美xxxx黑人又粗又长 | 久久99精品国产麻豆蜜芽 | 国产午夜无码精品免费看 | 国产精品高潮呻吟av久久4虎 | 色欲av亚洲一区无码少妇 | 丝袜足控一区二区三区 | 国产香蕉97碰碰久久人人 | 亚欧洲精品在线视频免费观看 | 亚洲欧美日韩国产精品一区二区 | 欧美三级不卡在线观看 | 爆乳一区二区三区无码 | 97se亚洲精品一区 | 国产成人无码区免费内射一片色欲 | 国产麻豆精品精东影业av网站 | 5858s亚洲色大成网站www | 在线精品国产一区二区三区 | 欧美亚洲国产一区二区三区 | 狠狠色噜噜狠狠狠狠7777米奇 | 亚洲综合另类小说色区 | 免费看少妇作爱视频 | 人人爽人人澡人人人妻 | 久久综合激激的五月天 | 中文字幕日韩精品一区二区三区 | 欧洲精品码一区二区三区免费看 | 又大又黄又粗又爽的免费视频 | 亚洲精品国产a久久久久久 | 欧美性猛交内射兽交老熟妇 | 国内揄拍国内精品少妇国语 | 亚洲国产av美女网站 | 国内精品久久毛片一区二区 | 一二三四在线观看免费视频 | 九月婷婷人人澡人人添人人爽 | 亚洲の无码国产の无码步美 | 成 人 网 站国产免费观看 | 精品无码成人片一区二区98 | 久久久久久a亚洲欧洲av冫 | 欧美老熟妇乱xxxxx | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产艳妇av在线观看果冻传媒 | 久久精品国产一区二区三区肥胖 | 中国大陆精品视频xxxx | 精品国偷自产在线 | 狠狠cao日日穞夜夜穞av | 国产精品人人爽人人做我的可爱 | 丰满妇女强制高潮18xxxx | 欧美精品免费观看二区 | 国内丰满熟女出轨videos | 中文字幕无码视频专区 | 永久免费精品精品永久-夜色 | 亚洲欧美精品伊人久久 | 色偷偷人人澡人人爽人人模 | 18禁止看的免费污网站 | 国内精品一区二区三区不卡 | 国产精品对白交换视频 | 国产乱人偷精品人妻a片 | 久久综合色之久久综合 | 亚洲人成无码网www | 波多野结衣乳巨码无在线观看 | 国产69精品久久久久app下载 | 日本精品人妻无码77777 天堂一区人妻无码 | 日本大乳高潮视频在线观看 | 男人的天堂av网站 | 国产熟女一区二区三区四区五区 | www一区二区www免费 | 色五月丁香五月综合五月 | 在线а√天堂中文官网 | 成人免费无码大片a毛片 | 久久精品视频在线看15 | 在线天堂新版最新版在线8 | 午夜熟女插插xx免费视频 | 大色综合色综合网站 | 熟女俱乐部五十路六十路av | 中文字幕无码热在线视频 | 国产免费久久久久久无码 | 又大又紧又粉嫩18p少妇 | 人妻中文无码久热丝袜 | 无码一区二区三区在线观看 | 在线播放免费人成毛片乱码 | 欧美日韩视频无码一区二区三 | 国产精品二区一区二区aⅴ污介绍 | 无码国模国产在线观看 | 亚洲综合久久一区二区 | 亚洲狠狠色丁香婷婷综合 | 六月丁香婷婷色狠狠久久 | 中文字幕乱妇无码av在线 | 丝袜 中出 制服 人妻 美腿 | 国产精品久免费的黄网站 | 国产真实伦对白全集 | 亚洲国产av精品一区二区蜜芽 | 日本一卡二卡不卡视频查询 | 在线观看免费人成视频 | 亚洲精品美女久久久久久久 | 中文字幕人妻丝袜二区 | 无码人妻少妇伦在线电影 | 久久久久久久人妻无码中文字幕爆 | 久久精品中文字幕一区 | 国产日产欧产精品精品app | www国产精品内射老师 | 国产精品99爱免费视频 | 丰满人妻一区二区三区免费视频 | 大地资源中文第3页 | 亚洲综合色区中文字幕 | 国产亚洲人成a在线v网站 | 东京无码熟妇人妻av在线网址 | 男女下面进入的视频免费午夜 | 55夜色66夜色国产精品视频 | 99久久精品无码一区二区毛片 | 人妻少妇精品久久 | 欧美日韩一区二区免费视频 | 无码免费一区二区三区 | 激情亚洲一区国产精品 | 日本大香伊一区二区三区 | 国产精品自产拍在线观看 | 男女下面进入的视频免费午夜 | 欧美35页视频在线观看 | 波多野结衣一区二区三区av免费 | 亚洲欧美国产精品久久 | 99久久婷婷国产综合精品青草免费 | 欧美人与动性行为视频 | 精品成在人线av无码免费看 | 野狼第一精品社区 | 日产国产精品亚洲系列 | 男人和女人高潮免费网站 | 色狠狠av一区二区三区 | 国产精品久久久久9999小说 | 免费观看又污又黄的网站 | 毛片内射-百度 | 国产两女互慰高潮视频在线观看 | 亚洲精品成人av在线 | 麻豆av传媒蜜桃天美传媒 | 国产精品无码成人午夜电影 | 无码一区二区三区在线观看 | 无码福利日韩神码福利片 | 十八禁真人啪啪免费网站 | 国产偷抇久久精品a片69 | 亚洲综合精品香蕉久久网 | 国产激情一区二区三区 | 在线观看欧美一区二区三区 | 性欧美疯狂xxxxbbbb | 亚洲va欧美va天堂v国产综合 | 无遮无挡爽爽免费视频 | 亚洲欧美精品aaaaaa片 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲欧洲日本无在线码 | 女高中生第一次破苞av | 青草青草久热国产精品 | 亚洲日韩乱码中文无码蜜桃臀网站 | 熟女俱乐部五十路六十路av | 国产精品鲁鲁鲁 | 97色伦图片97综合影院 | 免费国产成人高清在线观看网站 | 日韩视频 中文字幕 视频一区 | 国产特级毛片aaaaaa高潮流水 | 国产网红无码精品视频 | 日本精品少妇一区二区三区 | 国产精品va在线播放 | 国产明星裸体无码xxxx视频 | 中文字幕无码日韩专区 | 奇米影视7777久久精品人人爽 | 免费乱码人妻系列无码专区 | 日日摸夜夜摸狠狠摸婷婷 | 亚洲国产欧美在线成人 | 伊人久久大香线蕉亚洲 | 成人免费无码大片a毛片 | 97人妻精品一区二区三区 | 国产精品手机免费 | 人人澡人人透人人爽 | 麻花豆传媒剧国产免费mv在线 | 久久精品成人欧美大片 | 亚洲娇小与黑人巨大交 | 久久综合色之久久综合 | 成人性做爰aaa片免费看不忠 | 性生交片免费无码看人 | 免费无码肉片在线观看 | 国产精品二区一区二区aⅴ污介绍 | 午夜时刻免费入口 | 大地资源网第二页免费观看 | 丰腴饱满的极品熟妇 | 我要看www免费看插插视频 | 午夜福利一区二区三区在线观看 | 午夜无码区在线观看 | 精品水蜜桃久久久久久久 | 中文精品无码中文字幕无码专区 | 久久天天躁狠狠躁夜夜免费观看 | 亚洲中文字幕在线无码一区二区 | 任你躁国产自任一区二区三区 | 久久午夜无码鲁丝片 | 国产精品成人av在线观看 | 国产特级毛片aaaaaa高潮流水 | 色综合久久中文娱乐网 | 国产肉丝袜在线观看 | 又紧又大又爽精品一区二区 | 色婷婷久久一区二区三区麻豆 | 综合人妻久久一区二区精品 | 无码人妻出轨黑人中文字幕 | 午夜熟女插插xx免费视频 | 全球成人中文在线 | 欧美 亚洲 国产 另类 | 国产suv精品一区二区五 | 国产真实伦对白全集 | 精品欧洲av无码一区二区三区 | 装睡被陌生人摸出水好爽 | 国产69精品久久久久app下载 | 亚洲成av人片天堂网无码】 | 俺去俺来也在线www色官网 | 精品国产aⅴ无码一区二区 | 夜精品a片一区二区三区无码白浆 | 色一情一乱一伦 | 精品国精品国产自在久国产87 | 国产黄在线观看免费观看不卡 | 青草视频在线播放 | 成人精品天堂一区二区三区 | 亚洲精品一区二区三区婷婷月 | 国产亚洲精品久久久久久久久动漫 | 久久久久久久女国产乱让韩 | 好男人社区资源 | 久久久精品国产sm最大网站 | 久久99久久99精品中文字幕 | 九月婷婷人人澡人人添人人爽 | 无遮挡国产高潮视频免费观看 | 2019nv天堂香蕉在线观看 | 久久综合九色综合97网 | 国产精品99久久精品爆乳 | 一个人看的www免费视频在线观看 | 日韩av无码中文无码电影 | 成人影院yy111111在线观看 | 日本熟妇人妻xxxxx人hd | 无码精品国产va在线观看dvd | 亚洲精品一区国产 | 日本乱人伦片中文三区 | 国产超级va在线观看视频 | 免费国产成人高清在线观看网站 | 国产农村妇女高潮大叫 | 亚洲综合无码一区二区三区 | 国产人妖乱国产精品人妖 | 中文字幕人妻无码一夲道 | 国产无套内射久久久国产 | 51国偷自产一区二区三区 | 福利一区二区三区视频在线观看 | 国产成人精品久久亚洲高清不卡 | 任你躁国产自任一区二区三区 | 色一情一乱一伦一视频免费看 | 国产亚av手机在线观看 | 午夜精品久久久内射近拍高清 | 激情国产av做激情国产爱 | 国产成人无码a区在线观看视频app | 精品无码一区二区三区的天堂 | 亚洲爆乳精品无码一区二区三区 | 中文字幕精品av一区二区五区 | 老司机亚洲精品影院无码 | 亚洲成av人影院在线观看 | 亚洲 另类 在线 欧美 制服 | 精品久久久中文字幕人妻 | 国产精品久久国产三级国 | 久久久久国色av免费观看性色 | 亚洲精品久久久久久久久久久 | 久久久久久久久888 | а√资源新版在线天堂 | 成人免费视频一区二区 | 人妻天天爽夜夜爽一区二区 | 国产高潮视频在线观看 | 国产精品亚洲а∨无码播放麻豆 | 高中生自慰www网站 | 青青青手机频在线观看 | 亚无码乱人伦一区二区 | 国内综合精品午夜久久资源 | 丰满少妇高潮惨叫视频 | 毛片内射-百度 | 又色又爽又黄的美女裸体网站 | 日韩无码专区 | v一区无码内射国产 | 亚洲码国产精品高潮在线 | 国产精品美女久久久网av | 亚洲七七久久桃花影院 | 大肉大捧一进一出视频出来呀 | 久青草影院在线观看国产 | 久久久久久a亚洲欧洲av冫 | 在线精品亚洲一区二区 | 精品无码国产自产拍在线观看蜜 | 国产特级毛片aaaaaa高潮流水 | 中文无码成人免费视频在线观看 | 精品国产精品久久一区免费式 | 久久久久国色av免费观看性色 | 青青久在线视频免费观看 | 国产精品久久国产三级国 | 国产精品第一国产精品 | 精品偷拍一区二区三区在线看 | 久久精品丝袜高跟鞋 | 午夜熟女插插xx免费视频 | 欧美人妻一区二区三区 | 国产熟女一区二区三区四区五区 | 领导边摸边吃奶边做爽在线观看 | 亚洲gv猛男gv无码男同 | 欧美人与牲动交xxxx | 久久精品一区二区三区四区 | 国产精品18久久久久久麻辣 | 99久久久国产精品无码免费 | 天堂久久天堂av色综合 | 亚洲精品美女久久久久久久 | 国产亚洲精品久久久ai换 | 乱码午夜-极国产极内射 | 日本精品高清一区二区 | 内射老妇bbwx0c0ck | 天天综合网天天综合色 | 少妇久久久久久人妻无码 | 一本久道高清无码视频 | 巨爆乳无码视频在线观看 | 2019nv天堂香蕉在线观看 | 成人三级无码视频在线观看 | 欧美成人午夜精品久久久 | 领导边摸边吃奶边做爽在线观看 | 国产精品久久久久久亚洲影视内衣 | 男女下面进入的视频免费午夜 | 亚洲阿v天堂在线 | 久久精品女人天堂av免费观看 | 国产乱子伦视频在线播放 | 精品国产一区二区三区av 性色 | 亚洲午夜无码久久 | 国产精品亚洲一区二区三区喷水 | 国产av剧情md精品麻豆 | 无码福利日韩神码福利片 | 无码午夜成人1000部免费视频 | 少妇厨房愉情理9仑片视频 | 激情爆乳一区二区三区 | 亚洲伊人久久精品影院 | 成在人线av无码免观看麻豆 | 国产精品久久国产精品99 | 国产肉丝袜在线观看 | 亚洲理论电影在线观看 | 天下第一社区视频www日本 | 国产做国产爱免费视频 | 日本免费一区二区三区最新 | 性欧美videos高清精品 | 亚洲精品国产品国语在线观看 | 性色欲网站人妻丰满中文久久不卡 | 亚洲人成网站免费播放 | 一本久道久久综合狠狠爱 | 久久精品人人做人人综合 | 无码人妻少妇伦在线电影 | 国精品人妻无码一区二区三区蜜柚 | 四虎4hu永久免费 | 4hu四虎永久在线观看 | 精品成在人线av无码免费看 | 乱码午夜-极国产极内射 | 成人无码精品1区2区3区免费看 | 水蜜桃色314在线观看 | 水蜜桃色314在线观看 | yw尤物av无码国产在线观看 | 人人超人人超碰超国产 | 高中生自慰www网站 | 久久久久se色偷偷亚洲精品av | 欧美黑人性暴力猛交喷水 | 日日摸夜夜摸狠狠摸婷婷 | 精品一二三区久久aaa片 | 在线观看欧美一区二区三区 | 人妻尝试又大又粗久久 | 2020久久香蕉国产线看观看 | 国产高潮视频在线观看 | 巨爆乳无码视频在线观看 | 日日摸日日碰夜夜爽av | 国产午夜福利亚洲第一 | 午夜福利一区二区三区在线观看 | 岛国片人妻三上悠亚 | 亚洲一区二区三区香蕉 | 国内精品久久毛片一区二区 | 蜜臀av无码人妻精品 | 精品偷自拍另类在线观看 | 麻豆精品国产精华精华液好用吗 | 成人影院yy111111在线观看 | 狠狠cao日日穞夜夜穞av | 国产精品久免费的黄网站 | 少妇被粗大的猛进出69影院 | 亚洲 a v无 码免 费 成 人 a v | 国产精品亚洲lv粉色 | 国产亚洲精品精品国产亚洲综合 | 午夜精品一区二区三区的区别 | 又湿又紧又大又爽a视频国产 | 日日麻批免费40分钟无码 | 亚洲 a v无 码免 费 成 人 a v | 成人免费视频在线观看 | 国内精品久久久久久中文字幕 | 久久熟妇人妻午夜寂寞影院 | 国产激情艳情在线看视频 | 少妇人妻av毛片在线看 | 久久亚洲精品中文字幕无男同 | 最近中文2019字幕第二页 | 中文字幕av日韩精品一区二区 | 日本乱人伦片中文三区 | 无码吃奶揉捏奶头高潮视频 | 无码人妻黑人中文字幕 | 熟女少妇在线视频播放 | 3d动漫精品啪啪一区二区中 | 少妇人妻av毛片在线看 | 欧美日韩综合一区二区三区 | 乱人伦人妻中文字幕无码久久网 | 亚洲精品久久久久久久久久久 | 中文字幕+乱码+中文字幕一区 | 国产亚洲精品久久久久久大师 | 亚洲国产精品成人久久蜜臀 | 精品偷拍一区二区三区在线看 | 亚洲欧洲中文日韩av乱码 | 亚洲精品综合一区二区三区在线 | 大肉大捧一进一出好爽视频 | 国产亚洲精品久久久久久久久动漫 | 久久99精品国产麻豆 | 久久精品人妻少妇一区二区三区 | 俺去俺来也在线www色官网 | 波多野结衣av一区二区全免费观看 | 成人片黄网站色大片免费观看 | 亚洲日韩乱码中文无码蜜桃臀网站 | 久久精品中文字幕大胸 | 99久久久无码国产aaa精品 | 国产精品亚洲一区二区三区喷水 | 欧美日韩视频无码一区二区三 | 日本爽爽爽爽爽爽在线观看免 | 日日摸夜夜摸狠狠摸婷婷 | 黑人粗大猛烈进出高潮视频 | 欧美日韩久久久精品a片 | 国产又爽又猛又粗的视频a片 | 伊人久久大香线焦av综合影院 | 激情亚洲一区国产精品 | 欧美大屁股xxxxhd黑色 | 天堂无码人妻精品一区二区三区 | 中文字幕久久久久人妻 | 国产午夜亚洲精品不卡 | 国产偷抇久久精品a片69 | 性啪啪chinese东北女人 | 国产超碰人人爽人人做人人添 | 一本大道久久东京热无码av | 国产偷抇久久精品a片69 | 国产亚洲精品精品国产亚洲综合 | 樱花草在线播放免费中文 | 午夜精品久久久内射近拍高清 | 免费人成在线观看网站 | 无码人妻精品一区二区三区不卡 | 丰满肥臀大屁股熟妇激情视频 | 国产高潮视频在线观看 | 国产国产精品人在线视 | 99久久99久久免费精品蜜桃 | 亚洲中文字幕在线无码一区二区 | 日韩欧美群交p片內射中文 | 少妇被粗大的猛进出69影院 | 欧美一区二区三区视频在线观看 | 色妞www精品免费视频 | 又大又紧又粉嫩18p少妇 | 无码精品人妻一区二区三区av | 亚洲精品国产精品乱码视色 | 免费观看的无遮挡av | 免费观看的无遮挡av | 久久精品人人做人人综合 | 成人无码视频在线观看网站 | 在线a亚洲视频播放在线观看 | 精品水蜜桃久久久久久久 | 18无码粉嫩小泬无套在线观看 | 亚洲精品中文字幕久久久久 | 国产精品美女久久久网av | 国产精品成人av在线观看 | 网友自拍区视频精品 | 亚洲乱码日产精品bd | 久久国产精品精品国产色婷婷 | 一本色道久久综合亚洲精品不卡 | 在线观看国产午夜福利片 | 中文字幕av无码一区二区三区电影 | 一本久道高清无码视频 | 丁香花在线影院观看在线播放 | 中文字幕 人妻熟女 | 午夜精品一区二区三区在线观看 | 国产精品高潮呻吟av久久 | 在线亚洲高清揄拍自拍一品区 | 国产人成高清在线视频99最全资源 | 国产精品嫩草久久久久 | 免费网站看v片在线18禁无码 | 国产综合在线观看 | 日韩精品一区二区av在线 | 性生交片免费无码看人 | 久久精品视频在线看15 | 无码任你躁久久久久久久 | 日韩精品久久久肉伦网站 | 牛和人交xxxx欧美 | 露脸叫床粗话东北少妇 | 国产精品99爱免费视频 | 亚洲人成影院在线观看 | 大色综合色综合网站 | 人妻少妇被猛烈进入中文字幕 | 欧美性猛交内射兽交老熟妇 | 亚洲va中文字幕无码久久不卡 | 国产色xx群视频射精 | 任你躁在线精品免费 | 漂亮人妻洗澡被公强 日日躁 | 中文无码精品a∨在线观看不卡 | 人人妻人人澡人人爽欧美一区 | 一个人免费观看的www视频 | 丰满人妻被黑人猛烈进入 | 国产精品理论片在线观看 | 无码福利日韩神码福利片 | 老司机亚洲精品影院无码 | 欧洲美熟女乱又伦 | 国产精品欧美成人 | 亚洲色www成人永久网址 | 精品国产一区av天美传媒 | 国产性生交xxxxx无码 | 波多野42部无码喷潮在线 | 精品国产一区av天美传媒 | 国产sm调教视频在线观看 | 狠狠cao日日穞夜夜穞av | 久久综合激激的五月天 | 亚洲色在线无码国产精品不卡 | 国产亚洲精品久久久ai换 | 色婷婷久久一区二区三区麻豆 | 亚洲爆乳无码专区 | 婷婷综合久久中文字幕蜜桃三电影 | 国产xxx69麻豆国语对白 | 丁香啪啪综合成人亚洲 | 欧洲极品少妇 | 爽爽影院免费观看 | 亚洲va欧美va天堂v国产综合 | 国产一区二区三区影院 | 日本又色又爽又黄的a片18禁 | 日本一卡2卡3卡四卡精品网站 | 久久午夜无码鲁丝片午夜精品 | 欧美老妇交乱视频在线观看 | 狠狠色色综合网站 | 午夜无码区在线观看 | 亚洲综合伊人久久大杳蕉 | 久久久久亚洲精品男人的天堂 | 国产午夜福利100集发布 | 乱中年女人伦av三区 | 国产无遮挡又黄又爽免费视频 | 精品无码一区二区三区的天堂 | 人妻无码αv中文字幕久久琪琪布 | 亚洲日本一区二区三区在线 | 狠狠色噜噜狠狠狠7777奇米 | 麻豆国产97在线 | 欧洲 | 久久久久久久女国产乱让韩 | 久久精品女人天堂av免费观看 | 国产偷国产偷精品高清尤物 | 国产性生交xxxxx无码 | 欧美丰满熟妇xxxx性ppx人交 | 成熟女人特级毛片www免费 | 夜精品a片一区二区三区无码白浆 | 午夜无码人妻av大片色欲 | 99er热精品视频 | 亚洲精品国产a久久久久久 | 中文字幕 亚洲精品 第1页 | 亚洲精品久久久久avwww潮水 | 色婷婷综合中文久久一本 | 国产人妻人伦精品1国产丝袜 | 日韩人妻少妇一区二区三区 | 熟妇人妻中文av无码 | 巨爆乳无码视频在线观看 | 国产成人精品久久亚洲高清不卡 | 久久综合色之久久综合 | 欧美国产亚洲日韩在线二区 | 天干天干啦夜天干天2017 | 无码人妻av免费一区二区三区 | 精品一二三区久久aaa片 | 成人试看120秒体验区 | 精品日本一区二区三区在线观看 | 国产人妻久久精品二区三区老狼 | 国产精品对白交换视频 | 亚拍精品一区二区三区探花 | 国产精品人妻一区二区三区四 | 久久久久99精品成人片 | 男人和女人高潮免费网站 | 未满成年国产在线观看 | 免费观看黄网站 | 黑人大群体交免费视频 | 中文字幕无码av激情不卡 | 国产情侣作爱视频免费观看 | 三级4级全黄60分钟 | 欧美精品在线观看 | 亚洲精品国偷拍自产在线麻豆 | 少妇无码一区二区二三区 | 在线观看国产一区二区三区 | 国产精品高潮呻吟av久久4虎 | 人人爽人人爽人人片av亚洲 | 亚洲日本一区二区三区在线 | 日韩人妻无码一区二区三区久久99 | 国产亲子乱弄免费视频 | √天堂中文官网8在线 | 国产精品视频免费播放 | 久久久久久久久888 | 国产超碰人人爽人人做人人添 | 国产熟女一区二区三区四区五区 | 国产精品久久福利网站 | 色综合视频一区二区三区 | 日日摸天天摸爽爽狠狠97 | 日韩av无码一区二区三区 | 一二三四在线观看免费视频 | 久久午夜无码鲁丝片 | 精品久久久久久亚洲精品 | 国产精品嫩草久久久久 | 欧美丰满熟妇xxxx性ppx人交 | 亚洲人成人无码网www国产 | 国产色在线 | 国产 | 无码av中文字幕免费放 | 国产精品美女久久久网av | 乌克兰少妇性做爰 | 最近中文2019字幕第二页 | 亚洲日韩一区二区 | 精品国产一区二区三区四区在线看 | 噜噜噜亚洲色成人网站 | 欧美精品在线观看 | 激情综合激情五月俺也去 | 日韩亚洲欧美中文高清在线 | 俄罗斯老熟妇色xxxx | 丰满人妻一区二区三区免费视频 | 欧美性猛交xxxx富婆 | 色噜噜亚洲男人的天堂 | 野狼第一精品社区 | 亚洲成色在线综合网站 | 国精产品一品二品国精品69xx | 扒开双腿吃奶呻吟做受视频 | 久久久久久久人妻无码中文字幕爆 | 无码av免费一区二区三区试看 | 三上悠亚人妻中文字幕在线 | www一区二区www免费 | 国产亚洲精品久久久久久 | 国产农村乱对白刺激视频 | 高清不卡一区二区三区 | 亚洲第一无码av无码专区 | 国产精品成人av在线观看 | 亚洲码国产精品高潮在线 | 久久99精品久久久久久动态图 | 亚洲中文字幕乱码av波多ji | 秋霞成人午夜鲁丝一区二区三区 | 少妇厨房愉情理9仑片视频 | 国产97色在线 | 免 | 国产无套内射久久久国产 | 色五月丁香五月综合五月 | 熟女少妇人妻中文字幕 | 日本一区二区更新不卡 | 99视频精品全部免费免费观看 | 国产黄在线观看免费观看不卡 | 精品亚洲韩国一区二区三区 | 亚洲国产欧美国产综合一区 | 国产内射爽爽大片视频社区在线 | av无码电影一区二区三区 | 国产超碰人人爽人人做人人添 | 成人综合网亚洲伊人 | 色噜噜亚洲男人的天堂 | 国产精品嫩草久久久久 | 国产色精品久久人妻 | 麻豆精产国品 | 少妇人妻偷人精品无码视频 | 无码播放一区二区三区 | 亚洲欧美日韩国产精品一区二区 | 狠狠躁日日躁夜夜躁2020 | 2019午夜福利不卡片在线 | 亚洲自偷自拍另类第1页 | 久久综合网欧美色妞网 | 乱码av麻豆丝袜熟女系列 | 欧美国产日韩久久mv | 大乳丰满人妻中文字幕日本 | 高潮毛片无遮挡高清免费视频 | 丰满护士巨好爽好大乳 | 亚洲一区二区三区播放 | 日日橹狠狠爱欧美视频 | 精品国产乱码久久久久乱码 | 性啪啪chinese东北女人 | 天天拍夜夜添久久精品大 | 在线观看国产一区二区三区 | 久久精品人妻少妇一区二区三区 | 少妇人妻av毛片在线看 | аⅴ资源天堂资源库在线 | 曰韩少妇内射免费播放 | 狠狠色欧美亚洲狠狠色www | 最新国产麻豆aⅴ精品无码 | 中文字幕日韩精品一区二区三区 | 亚洲男人av香蕉爽爽爽爽 | 激情五月综合色婷婷一区二区 | 性欧美videos高清精品 | 亚洲精品一区二区三区在线观看 | 日本护士毛茸茸高潮 | 狂野欧美激情性xxxx | 亚洲小说图区综合在线 | 久久精品成人欧美大片 | 日韩av无码一区二区三区不卡 | 国产av剧情md精品麻豆 | 国产亚洲精品久久久久久久 | 人妻少妇精品无码专区二区 | 欧美大屁股xxxxhd黑色 | 成年美女黄网站色大免费视频 | 强辱丰满人妻hd中文字幕 | 国产精品人妻一区二区三区四 | 最近中文2019字幕第二页 | 大屁股大乳丰满人妻 | 人人妻人人藻人人爽欧美一区 | a国产一区二区免费入口 | 青青草原综合久久大伊人精品 | 久久精品国产一区二区三区 | 久久国语露脸国产精品电影 | 亚洲精品成人av在线 | 欧美人与善在线com | 国产婷婷色一区二区三区在线 | 九九久久精品国产免费看小说 | 5858s亚洲色大成网站www | 亚洲日韩一区二区三区 | 国产超碰人人爽人人做人人添 | 免费观看黄网站 | 亚洲欧美日韩成人高清在线一区 | 少妇的肉体aa片免费 | 亚洲中文字幕久久无码 | 欧美精品国产综合久久 | 一二三四在线观看免费视频 | 男女超爽视频免费播放 | 国产在线精品一区二区高清不卡 | 亚洲成a人一区二区三区 | 搡女人真爽免费视频大全 | 激情五月综合色婷婷一区二区 | 女高中生第一次破苞av | 中文字幕精品av一区二区五区 | 无码国内精品人妻少妇 | 亚洲午夜福利在线观看 | 欧美第一黄网免费网站 | 女高中生第一次破苞av | 色婷婷香蕉在线一区二区 | 大地资源网第二页免费观看 | av香港经典三级级 在线 | 日韩精品无码免费一区二区三区 | 无码人妻精品一区二区三区不卡 | 日产精品高潮呻吟av久久 | 中文字幕久久久久人妻 | 国产黄在线观看免费观看不卡 | 日韩精品无码一区二区中文字幕 | 色欲综合久久中文字幕网 | 亚洲成av人在线观看网址 | 成人试看120秒体验区 | 久久久精品456亚洲影院 | 色情久久久av熟女人妻网站 | 日本免费一区二区三区最新 | 自拍偷自拍亚洲精品10p | 久久精品人妻少妇一区二区三区 | av人摸人人人澡人人超碰下载 | 国产色xx群视频射精 | 亚洲一区二区三区四区 | 国产人妻精品一区二区三区 | 内射欧美老妇wbb | 一本大道伊人av久久综合 | 无码午夜成人1000部免费视频 | 午夜成人1000部免费视频 | 成人精品视频一区二区 | 在线观看欧美一区二区三区 | 精品夜夜澡人妻无码av蜜桃 | 国产凸凹视频一区二区 | 欧美国产日韩亚洲中文 | 东京热无码av男人的天堂 | 欧美精品国产综合久久 | 在线精品国产一区二区三区 | 三级4级全黄60分钟 | 成人无码视频在线观看网站 | ass日本丰满熟妇pics | 野外少妇愉情中文字幕 | 亚洲精品一区二区三区四区五区 | 思思久久99热只有频精品66 | 亚洲人成无码网www | 无码人妻出轨黑人中文字幕 | 国产情侣作爱视频免费观看 | 久久婷婷五月综合色国产香蕉 | 国产精品久免费的黄网站 | 精品乱子伦一区二区三区 | 人妻少妇精品视频专区 | 成人综合网亚洲伊人 | 偷窥日本少妇撒尿chinese | 亚洲精品美女久久久久久久 | 色综合视频一区二区三区 | 日日天干夜夜狠狠爱 | 18无码粉嫩小泬无套在线观看 | 国产成人无码一二三区视频 | 亚洲色偷偷偷综合网 | 国产绳艺sm调教室论坛 | 精品久久久久香蕉网 | а√资源新版在线天堂 | 最近中文2019字幕第二页 | 日韩无码专区 | 中文亚洲成a人片在线观看 | 性生交大片免费看女人按摩摩 | 久久久久av无码免费网 | 久久综合香蕉国产蜜臀av | 欧美日韩亚洲国产精品 | 蜜桃视频韩日免费播放 | 亚洲欧美综合区丁香五月小说 | 国产小呦泬泬99精品 | 无码国模国产在线观看 | 色窝窝无码一区二区三区色欲 | 日本大香伊一区二区三区 | 国产亚洲精品久久久久久久 | 在线播放免费人成毛片乱码 | 国产精品二区一区二区aⅴ污介绍 | 初尝人妻少妇中文字幕 | 国产色视频一区二区三区 | 精品一二三区久久aaa片 | 国内精品九九久久久精品 | 久久综合激激的五月天 | 国产成人综合美国十次 | 色 综合 欧美 亚洲 国产 | 亚洲欧洲中文日韩av乱码 | 大肉大捧一进一出好爽视频 | 亚洲精品国产品国语在线观看 | 久激情内射婷内射蜜桃人妖 | 国产精品久久久久久亚洲毛片 | www成人国产高清内射 | 乱人伦人妻中文字幕无码 | 成人精品一区二区三区中文字幕 | 精品夜夜澡人妻无码av蜜桃 | 国产精品美女久久久 | 黑人巨大精品欧美黑寡妇 | 国产成人一区二区三区别 | 色欲人妻aaaaaaa无码 | 中文字幕色婷婷在线视频 | 国产成人精品一区二区在线小狼 | 精品人妻中文字幕有码在线 | 国产在线无码精品电影网 | 草草网站影院白丝内射 | 成人亚洲精品久久久久软件 | 亚洲国产精品一区二区美利坚 | 亚洲国产av美女网站 | 中文字幕人妻无码一夲道 | 无码吃奶揉捏奶头高潮视频 | 乱人伦中文视频在线观看 | 精品日本一区二区三区在线观看 | 无码一区二区三区在线观看 | 亚洲性无码av中文字幕 | 久久精品女人的天堂av | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 亚洲人亚洲人成电影网站色 | 99久久无码一区人妻 | 国产精品无码久久av | 在线观看国产午夜福利片 | 午夜成人1000部免费视频 | √天堂中文官网8在线 | 扒开双腿吃奶呻吟做受视频 | 天天躁日日躁狠狠躁免费麻豆 | 色欲av亚洲一区无码少妇 | 久久zyz资源站无码中文动漫 | 亚洲人成影院在线观看 | 欧美人与禽猛交狂配 | 大肉大捧一进一出视频出来呀 | 好爽又高潮了毛片免费下载 | 久久久精品欧美一区二区免费 | 国产免费观看黄av片 | 18禁黄网站男男禁片免费观看 | 午夜福利试看120秒体验区 | 色窝窝无码一区二区三区色欲 | 国产成人无码区免费内射一片色欲 | 麻豆精品国产精华精华液好用吗 | 国产超碰人人爽人人做人人添 | 久久99精品国产.久久久久 | 久久久精品人妻久久影视 | 思思久久99热只有频精品66 | 亚洲精品无码人妻无码 | 男女超爽视频免费播放 | 无遮挡国产高潮视频免费观看 | 国内精品一区二区三区不卡 | 国产免费久久精品国产传媒 | 精品久久久久久亚洲精品 | 中文字幕人妻无码一夲道 | 亚洲成av人影院在线观看 | 蜜桃无码一区二区三区 | 蜜桃视频插满18在线观看 | 久久zyz资源站无码中文动漫 | av在线亚洲欧洲日产一区二区 | 伊人色综合久久天天小片 | 在线a亚洲视频播放在线观看 | 天堂а√在线中文在线 | 久久99国产综合精品 | 久久久婷婷五月亚洲97号色 | 国产成人一区二区三区在线观看 | 久久99精品久久久久久动态图 | 熟女少妇人妻中文字幕 | 欧美精品国产综合久久 | 成人一区二区免费视频 | 久久久中文久久久无码 | 久久精品女人的天堂av | 理论片87福利理论电影 | 久久亚洲国产成人精品性色 | 国产一区二区不卡老阿姨 | 131美女爱做视频 | 水蜜桃av无码 | аⅴ资源天堂资源库在线 | 亚洲一区二区三区在线观看网站 | 亚洲国产精品一区二区第一页 | 人妻少妇精品视频专区 | 少妇性l交大片 | 久久久久久av无码免费看大片 | 久久亚洲精品成人无码 | 1000部啪啪未满十八勿入下载 | 一本一道久久综合久久 | 亚洲熟熟妇xxxx | 亚洲国产高清在线观看视频 | a国产一区二区免费入口 | 综合人妻久久一区二区精品 | 俄罗斯老熟妇色xxxx | 久久精品国产一区二区三区 |