青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Javen-Studio 咖啡小屋

http://javenstudio.org - C++ Java 分布式 搜索引擎
Naven's Research Laboratory - Thinking of Life, Imagination of Future

  C++博客 :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理 ::
  24 隨筆 :: 57 文章 :: 170 評(píng)論 :: 4 Trackbacks

時(shí)間和日歷類(lèi)的設(shè)計(jì)

C++通用框架的設(shè)計(jì) 作者:naven

1           介紹

時(shí)間和日歷以及時(shí)間的格式化處理在軟件的設(shè)計(jì)中起著非常重要的作用,但是目前C++的庫(kù)卻未有一個(gè)簡(jiǎn)單易用的時(shí)間類(lèi),大部分都需要開(kāi)發(fā)者直接調(diào)用操作系統(tǒng)的API來(lái)完成,而且很多API都不是線(xiàn)程安全的。某些大型的C++框架雖然提供一些時(shí)間類(lèi),但是卻不通用,也很難直接拿出來(lái)使用。下面介紹一下參考Java Framework中的時(shí)間相關(guān)的類(lèi)來(lái)設(shè)計(jì)并實(shí)現(xiàn)C++版本的時(shí)間和日歷類(lèi)。

 

主要有如下一些類(lèi)

 

Time類(lèi),對(duì)應(yīng)于Javajava.util.Date類(lèi),表示特定的瞬間,精確到毫秒(Linux可精確到微秒,Solaris可精確到十億分之一秒)。Time只表示某時(shí)某地的瞬間,從197011 00:00:00 GMT以來(lái)的微秒數(shù),無(wú)時(shí)區(qū)。

 

Calendar 類(lèi),對(duì)應(yīng)于Javajava.util.Calendar類(lèi),它既表示了Time的精確瞬間,還代表了此時(shí)的年、月、日、時(shí)區(qū)等。它為特定瞬間與一組諸如 YEAR、MONTH、DAY_OF_MONTH、HOUR 日歷字段之間的轉(zhuǎn)換提供了一些方法,并為操作日歷字段(例如獲得下星期的日期)提供了一些方法。瞬間可用微秒值來(lái)表示,它是距歷元(即格林威治標(biāo)準(zhǔn)時(shí)間 1970 1 1 日的 00:00:00.000GMT)的偏移量。

 

TimeFormat類(lèi),類(lèi)似Javajava.text.SimpleDateFormat類(lèi),它用來(lái)將時(shí)間和日歷格式化成一個(gè)本地時(shí)間格式的文本形式,或者指定格式的文本形式。如果格式化時(shí)間,將缺省使用操作系統(tǒng)設(shè)定的本地(locale)時(shí)間格式處理。

 

TimeParser類(lèi),類(lèi)似Javajava.text.SimpleDateFormat類(lèi),與TimeFormat相反,它用來(lái)將一個(gè)時(shí)間的文本轉(zhuǎn)化成一個(gè)本地時(shí)間Time,缺省使用操作系統(tǒng)設(shè)定的本地時(shí)間格式處理。

 

2           Hello World!

下面介紹一下它們的使用

 

void main() 
{
    
// 獲取當(dāng)前時(shí)間,精確到微秒
    Time t = Time::getCurrentTime(); 
    
    
// 使用CRT的API格式化時(shí)間,只能精確到秒
    time_t tt = t.sec(); 
    printf(
"\n%s\n", ctime(&tt)); 
    
    
// 使用系統(tǒng)缺省的locale輸出格式化時(shí)間文本
    TimeFormat tf("%c"); 
    printf(
"\n%s\n", tf.format(t).c_str()); 
    
    
// 使用系統(tǒng)缺省的locale輸出格式化時(shí)間文本
    TimeFormat tf2("%#c"); 
    printf(
"\n%s\n", tf2.format(t).c_str()); 
    
    
// 自定義輸出格式化時(shí)間文本,精確到豪秒
    TimeFormat tff("%Y-%m-%d %H:%M:%S.%q"); 
    printf(
"\n%s\n", tf2.format(t).c_str()); 
    
    
// 自定義輸出格式化時(shí)間文本,精確到豪秒,輸出所有時(shí)間信息,包括時(shí)區(qū)和年代等
    TimeFormat tfCN("%G %Y年%B%d日 %A %H時(shí)%M分%S秒%q豪秒 時(shí)區(qū)%z""zh_CN.gb2312"); 
    printf(
"\n%s\n", tfCN.format(t).c_str()); 
    
    
// 使用自定義 zh_CN.gb2312 的locale和字符集輸出格式化時(shí)間文本,不受系統(tǒng)locale影響
    TimeFormat tfCN2("%G %Y %b %d %a %H:%M:%S.%q %z""zh_CN.gb2312"); 
    printf(
"\n%s\n", tfCN2.format(t).c_str()); 
    
    
// 使用自定義 en_US.iso8859-1 的locale和字符集輸出格式化時(shí)間文本,不受系統(tǒng)locale影響
    TimeFormat tfUS("%G %d %B %Y %A %H:%M:%S.%q TZ:%z""en_US.iso8859-1"); 
    printf(
"\n%s\n", tfUS.format(t).c_str()); 
    
    TimeFormat tfUS2(
"%G %Y %b %d %a %H:%M:%S.%q %z""en_US.iso8859-1"); 
    printf(
"\n%s\n", tfUS2.format(t).c_str()); 
    
    
// 使用 MIME 標(biāo)準(zhǔn)格式輸出格式化時(shí)間文本
    TimeFormat tfMIME("%a, %d %b %Y %H:%M:%S %z"); 
    printf(
"\n%s\n", tfMIME.format(t).c_str()); 

    
// 使用 MimeParse 方法轉(zhuǎn)換時(shí)間
    Time t2 = tf.mimeParse(tf.mimeFormat(t)); 
    printf(
"\n%s\n", tfCN.format(t2).c_str()); 
    
}

 

編譯程序?qū)⑤斎肴缦陆Y(jié)果

 

Wed Nov  9 16:09:40 2005


11/09/05 16:09:40

Wednesday, November 
092005 16:09:40

Wednesday, November 
092005 16:09:40

公元 2005年十一月09日 星期三 16時(shí)09分40秒078豪秒 時(shí)區(qū)
+0800

公元 
2005 11月 09 周三 16:09:40.078 +0800

AD 
09 November 2005 Wednesday 16:09:40.078 TZ:+0800

AD 
2005 Nov 09 Wed 16:09:40.078 +0800

Wed, 
09 Nov 2005 16:09:40 +0800

公元 2005年十一月09日 星期三 16時(shí)09分40秒000豪秒 時(shí)區(qū)
+0800

 

3           Time類(lèi)

由于Time要精確到微秒,所以Time類(lèi)使用timeval結(jié)構(gòu)存儲(chǔ)時(shí)間,該結(jié)構(gòu)包含兩個(gè)long整形,一個(gè)表示秒數(shù)(從197011 00:00:00 GMT以來(lái)的偏移量),一個(gè)表示微秒數(shù)。

 

Time類(lèi)的定義如下

 

class Time 

private:
    
/**
     * Store the values as a timeval which fields as.
     * struct timeval {
     *      long tv_sec;   // seconds
     *      long tv_usec;  // microseconds 
     
*/

    
struct timeval _tv;
}

 

Time類(lèi)獲取當(dāng)前精確到微秒的實(shí)現(xiàn)如下(Win32提供的API只能精確到豪秒)

 

Time
Time::gettimeofday()
{
#if defined(HAVE_GETTIMEOFDAY)
    
struct timeval tp;
    tp.tv_sec 
= 0
    tp.tv_usec 
= 0
#ifdef IS_SOLARIS_OS
    ::gettimeofday(
&tp, 0); // microseconds = 1/1,000,000 sec
    Time nowtime(tp); 
#else
    
struct timezone tz; 
    tz.tz_dsttime 
= 0
    tz.tz_minuteswest 
= 0
    ::gettimeofday(
&tp, &tz); // microseconds = 1/1,000,000 sec
    Time nowtime(tp); 
#endif
    
return nowtime; 

#elif defined(HAVE_FTIME)
    
struct timeb tb;
    tb.dstflag 
= 0
    tb.millitm 
= 0
    tb.time 
= 0
    tb.timezone 
= 0
    ftime(
&tb);  // milliseconds = 1/1,000 sec
    Time nowtime(tb); 
    
return nowtime; 

#elif defined(HAVE_CLOCK_GETTIME)
    
struct timespec ts; 
    ts.tv_sec 
= 0
    ts.tv_nsec 
= 0
    ::clock_gettime(CLOCK_REALTIME, 
&ts); // nanoseconds = 1/1,000,000,000 sec
    Time nowtime(ts); 
    
return nowtime; 

#else
//#warning "Time::gettimeofday()- low resolution timer: gettimeofday and ftime unavailable"
    Time nowtime(::time(0), 0); // seconds
    return nowtime; 

#endif
}

 

Time類(lèi)提供很多方法如果構(gòu)造方法和操作符等,可以在time_t和其他時(shí)間類(lèi)型之間轉(zhuǎn)換,也可以單獨(dú)獲取和設(shè)置時(shí)間的秒和微秒。

 

4           Calendar類(lèi)

Calendar類(lèi)是一個(gè)表示日歷的類(lèi),它可以實(shí)現(xiàn)日歷的向前向后前進(jìn)等所有功能。例如你可以設(shè)置,獲取,和操縱一個(gè)日期對(duì)象的各個(gè)部分,比方一個(gè)月的一天或者是一個(gè)星期的一天。舉例如下:

 

    // 定義日歷對(duì)象并設(shè)置為當(dāng)前時(shí)間
    Time nowtm = Time::getCurrentTime(); 
    TimeFormat ntf(
"%Y-%m-%d %H:%M:%S.%q"); 
    printf(
"\n%s\n", ntf.format(nowtm).c_str()); 
    
    Calendar cal; 
    cal.setTime(nowtm); 
    
    
// 年月日都向前移動(dòng)一單位
    cal.rollUpYear(); 
    cal.rollUpMonth(); 
    cal.rollUpDayOfMonth(); 
    
    String scal; 
    ntf.format(cal, scal); 
    printf(
"\n%s\n", scal.c_str());

 

程序輸出結(jié)果

 

2005-11-09 16:45:54.589

2006-12-10 16:45:54.589

 

Calendar類(lèi)是建立在Time類(lèi)的基礎(chǔ)上的,并加入了時(shí)區(qū)等信息,它的定義看起來(lái)如下所示:

 

class Calendar
{
protected
    
/**
     * Value of the <code>ERA</code> field indicating
     * the period before the common era (before Christ), also known as BCE.
     * The sequence of years at the transition from <code>BC</code> to <code>AD</code> is
     * , 2 BC, 1 BC, 1 AD, 2 AD,
     * @see Calendar#ERA
     
*/

    
int _era; 

    
/**
     * The currently set time for this calendar, expressed in milliseconds after
     * January 1, 1970, 0:00:00 GMT.
     * @see #isTimeSet
     * @serial
     
*/

    Time _time;

    
/**
     * The <code>TimeZone</code> used by this calendar. </code>Calendar</code>
     * uses the time zone data to translate between locale and GMT time.
     * @serial
     
*/

    
struct timezone _zone;

    
/**
     *  The asctime() and mktime() functions both take an argument
     *  representing  broken-down time which is a binary represen-
     *  tation separated into year, month, day, etc.   Broken-down
     *  time  is  stored  in  the structure tm which is defined in
     *  <time.h> as follows:<P>
     *  <code>
     *         struct tm
     *         {
     *                 int     tm_sec;         // seconds 
     *                 int     tm_min;         // minutes 
     *                 int     tm_hour;        // hours 
     *                 int     tm_mday;        // day of the month 
     *                 int     tm_mon;         // month 
     *                 int     tm_year;        // year 
     *                 int     tm_wday;        // day of the week 
     *                 int     tm_yday;        // day in the year 
     *                 int     tm_isdst;       // daylight saving time 
     *         };
     *  </code>
     
*/

    
struct tm _tm; 
    
}

 

Calendar類(lèi)定義了很多方法和操作符用來(lái)在Time類(lèi)和時(shí)區(qū)、年月日等之間轉(zhuǎn)換和設(shè)置、讀取等。Calendar類(lèi)實(shí)現(xiàn)時(shí)間的生成、轉(zhuǎn)換等都是自己實(shí)現(xiàn)的,并不調(diào)用操作系統(tǒng)的APImktime()等,并不使用CRTC運(yùn)行時(shí))的全局變量如timezone等,所以它是線(xiàn)程安全的,每一個(gè)Calendar對(duì)象都是互相獨(dú)立的,擁有自己的時(shí)區(qū)等信息。

 

5           TimeFormat類(lèi)

TimeFormat類(lèi)主要實(shí)現(xiàn)了將時(shí)間格式化成一個(gè)時(shí)間文本,可以使用系統(tǒng)缺省的本地格式,也可以指定格式轉(zhuǎn)換。轉(zhuǎn)換的用法如下:

 

TimeFormat tf("%Y-%m-%d %H:%M:%S.%q"); //定義一個(gè)格式
Time t = Time::getCurrentTime(); 
String s 
= tf.format(t); // 將時(shí)間對(duì)象格式化成文本字符串

 

時(shí)間格式化pattern有如下幾種

 

    %a     The abbreviated weekday name according to the current locale.

    %A     The full weekday name according to the current locale.

    %b     The abbreviated month name according to the current locale.

    %B     The full month name according to the current locale.

    %c     The preferred date and time representation for the current locale.

    %C     The century number (year/100) as a 2-digit integer. (SU)

    %d     The day of the month as a decimal number (range 01 to 31).

    %D     Equivalent  to  %m/%d/%y. (Yecch - for Americans only. 

           Americans should note that in other countries

           %d/%m/%y is rather common. This means that in international context 

           this  format  is  ambiguous  and should not be used.) (SU)

    %e     Like %d, the day of the month as a decimal number, but a leading

           zero is replaced by a space. (SU)

    %E     Modifier: use alternative format, see below. (SU)

    %G     The  ISO  8601 year with century as a decimal number.  The 4-digit

           year corresponding to the ISO week number (see %V).  This has the

           same format and value as %y,  except  that  if  the  ISO  week  number

           belongs to the previous or next year, that year is used instead. (TZ)

    %g     Like %G, but without century, i.e., with a 2-digit year (00-99). (TZ)

    %h     Equivalent to %b. (SU)

    %H     The hour as a decimal number using a 24-hour clock (range 00 to 23).

    %I     The hour as a decimal number using a 12-hour clock (range 01 to 12).

    %j     The day of the year as a decimal number (range 001 to 366).

    %k     The  hour (24-hour clock) as a decimal number (range 0 to 23); single

           digits are preceded by a blank. (See also %H.) (TZ)

    %l     The hour (12-hour clock) as a decimal number (range 1 to 12); single

           digits are preceded by a  blank. (See also %I.) (TZ)

    %m     The month as a decimal number (range 01 to 12).

    %M     The minute as a decimal number (range 00 to 59).

    %n     A newline character. (SU)

    %O     Modifier: use alternative format, see below. (SU)

    %p     Either  `AM'  or `PM' according to the given time value, or the

           corresponding strings for the current locale.  Noon is treated as `pm'

           and midnight as `am'.

    %P     Like %p but in lowercase: `am' or `pm' or a corresponding string for

           the current locale. (GNU)

    %r     The time in a.m. or p.m. notation.  In the POSIX locale this is

           equivalent to `%I:%M:%S %p'. (SU)

    %R     The time in 24-hour notation (%H:%M). (SU) For a version including the

           seconds, see %T below.

    %s     The number of seconds since the Epoch, i.e., since 1970-01-01 00:00:00 UTC.

           (TZ)

    %S     The second as a decimal number (range 00 to 61).

    %t     A tab character. (SU)

    %T     The time in 24-hour notation (%H:%M:%S). (SU)

    %u     The day of the week as a decimal, range 1 to 7, Monday being 1. 

           See also %w. (SU)

    %U     The week number of the current year as a decimal number, range 00 to 53,

           starting with the first Sun? day as the first day of week 01.

           See also %V and %W.

    %V     The  ISO  8601:1988 week number of the current year as a decimal number,

           range 01 to 53, where week 1 is the first week that has at least 4 days

           in the current year, and with Monday as the first  day  of the week.

           See also %U and %W. (SU)

    %w     The day of the week as a decimal, range 0 to 6, Sunday being 0.  See also %u.

    %W     The week number of the current year as a decimal number, range 00 to 53,

           starting with the first Mon? day as the first day of week 01.

    %x     The preferred date representation for the current locale without the time.

    %X     The preferred time representation for the current locale without the date.

    %y     The year as a decimal number without a century (range 00 to 99).

    %Y     The year as a decimal number including the century.

    %z     The time-zone as hour offset from GMT.  Required to emit RFC822-conformant

           dates (using "%a, %d %b %Y %H:%M:%S %z"). (GNU)

    %Z     The time zone or name or abbreviation.

    %+     The date and time in date(1) format. (TZ)

    %%     A literal `%' character.

 

6           TimeParser類(lèi)

TimeParser類(lèi)實(shí)現(xiàn)與TimeFormat相反的功能,是將一個(gè)指定格式的時(shí)間文本轉(zhuǎn)換成時(shí)間Time對(duì)象或Calendar對(duì)象,它的設(shè)計(jì)與TimeFormat類(lèi)似,目前還未全部完成,只實(shí)現(xiàn)了轉(zhuǎn)換Mime時(shí)間格式的文本的功能。

 

示例見(jiàn)上面的 Hello World 程序。

 

 

C++通用框架的設(shè)計(jì) 作者:naven 日期:2005-11-9

 

posted on 2005-11-09 17:28 Javen-Studio 閱讀(8405) 評(píng)論(5)  編輯 收藏 引用

評(píng)論

# 時(shí)間和日歷類(lèi)的設(shè)計(jì)(Java的Date和Calendar的C 實(shí)現(xiàn))[TrackBack] 2005-11-09 17:47 Naven
時(shí)間和日歷以及時(shí)間的格式化處理在軟件的設(shè)計(jì)中起著非常重要的作用,但是目前C 的庫(kù)卻未有一個(gè)簡(jiǎn)單易用的時(shí)間類(lèi),大部分都需要開(kāi)發(fā)者直接調(diào)用操作系統(tǒng)的API來(lái)完成,而且很多API都不是線(xiàn)程安全的。某些大型的C 框架雖然提供一些時(shí)間類(lèi),但是卻不通用,也很難直接拿出來(lái)使用。下面介紹一下參考Java Framework中的時(shí)間相關(guān)的類(lèi)來(lái)設(shè)計(jì)并實(shí)現(xiàn)C 版本的時(shí)間和日歷類(lèi)。

閱讀請(qǐng)點(diǎn) http://m.shnenglu.com/javenstudio/articles/1018.html
  查看原文  回復(fù)  更多評(píng)論
  

# re: 時(shí)間和日歷類(lèi)的設(shè)計(jì)(Java的Date和Calendar的C++實(shí)現(xiàn)) 2006-03-17 14:09 slummer
非常棒?。。?
能開(kāi)源碼?  回復(fù)  更多評(píng)論
  

# re: 時(shí)間和日歷類(lèi)的設(shè)計(jì)(Java的Date和Calendar的C++實(shí)現(xiàn)) 2006-03-18 21:11 Javen-Studio
想打算以后開(kāi)源,不過(guò)現(xiàn)在太忙了
所以我先介紹一下我的設(shè)計(jì)思想,過(guò)些時(shí)間有空再提供一個(gè)共享庫(kù)試用
謝謝  回復(fù)  更多評(píng)論
  

# re: 時(shí)間和日歷類(lèi)的設(shè)計(jì)(Java的Date和Calendar的C++實(shí)現(xiàn)) 2006-09-26 23:08 yiwangt
不錯(cuò).不過(guò)好像沒(méi)有用JAVA實(shí)現(xiàn)日歷昨顯示功能.  回復(fù)  更多評(píng)論
  

# re: 時(shí)間和日歷類(lèi)的設(shè)計(jì)(Java的Date和Calendar的C++實(shí)現(xiàn)) 2007-09-16 11:49 Javen-Studio
主要是根據(jù)自己應(yīng)用的需要而開(kāi)發(fā)的,所以很多都沒(méi)時(shí)間實(shí)現(xiàn)了
  回復(fù)  更多評(píng)論
  


只有注冊(cè)用戶(hù)登錄后才能發(fā)表評(píng)論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問(wèn)   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲人成亚洲人成在线观看| 一区二区三区久久网| 香蕉久久精品日日躁夜夜躁| 欧美一区二区| 亚洲黄色片网站| 亚洲国产三级网| 久久精品中文字幕一区| 欧美日韩人人澡狠狠躁视频| 亚洲第一在线综合网站| 欧美一级二级三级蜜桃| 中文精品视频一区二区在线观看| 欧美成人精品在线| 亚洲电影视频在线| 麻豆久久久9性大片| 欧美亚洲日本一区| 国产精品夜色7777狼人| 亚洲欧美日韩综合aⅴ视频| 一本一本久久a久久精品综合妖精 一本一本久久a久久精品综合麻豆 | 欧美99在线视频观看| 欧美在线视频日韩| 国产日韩精品一区二区| 先锋影音国产一区| 亚洲欧美日韩一区在线| 国产精品一二三四| 蜜桃久久精品一区二区| 久久一区二区精品| 亚洲影院在线| 国产精品中文在线| 亚洲欧美日韩一区| 亚洲一区二区精品视频| 国产精品视频自拍| 久久爱另类一区二区小说| 亚洲午夜精品国产| 国产精品永久免费观看| 亚洲欧美日韩国产一区| 欧美日韩大陆在线| 在线亚洲成人| 亚洲激情综合| 美女网站在线免费欧美精品| 国产在线精品成人一区二区三区 | 国产美女高潮久久白浆| 一区二区三区视频在线观看| 欧美高清一区| 一区二区日韩欧美| 欧美精选一区| 亚洲影视在线播放| 久久激情视频| 国产精品h在线观看| 亚洲国产婷婷综合在线精品 | 亚洲综合国产激情另类一区| 亚洲精品男同| 欧美精品一区二区视频| 亚洲综合色网站| 久久精品在线观看| 亚洲精品网站在线播放gif| 久久婷婷久久| 一区在线观看| 亚洲国产成人porn| 亚洲午夜视频在线| 亚洲在线网站| 国产精品理论片| 久久国产乱子精品免费女| 亚洲综合日韩在线| 欧美亚洲在线播放| 亚洲成色精品| 亚洲先锋成人| 亚洲高清网站| 亚洲欧美变态国产另类| 亚洲国产91| 国产精品99久久久久久宅男 | 亚洲精品视频在线观看网站| 亚洲素人在线| 亚洲伊人色欲综合网| 免费永久网站黄欧美| 久久久久国产精品午夜一区| 久久久伊人欧美| 亚洲一区三区电影在线观看| 久久亚洲影院| 国产美女搞久久| 欧美成人精品在线观看| 欧美人成在线视频| 久久久国产精品一区二区中文 | 美女视频一区免费观看| 亚洲欧洲日本国产| 国产美女精品| 亚洲剧情一区二区| 在线日韩欧美视频| 亚洲女性裸体视频| 亚洲欧美电影在线观看| 欧美日韩国产在线一区| 亚洲第一区在线观看| 亚洲成色777777在线观看影院| 久久国产精品一区二区三区四区| 午夜精品一区二区三区四区| 欧美午夜免费| 日韩午夜在线播放| 在线视频日本亚洲性| 一本大道久久a久久综合婷婷| 在线观看欧美一区| 香蕉视频成人在线观看| 亚洲欧美在线免费观看| 国产精品mv在线观看| 亚洲美女视频网| 欧美精品一区二区高清在线观看| 久久嫩草精品久久久精品一 | 亚洲一区影院| 欧美日韩在线亚洲一区蜜芽| 亚洲黄色片网站| 欧美激情一区三区| 日韩视频永久免费| 久久久成人精品| 欧美成人久久| 欧美**字幕| 亚洲精品在线一区二区| 另类尿喷潮videofree| 麻豆freexxxx性91精品| 国产综合欧美在线看| 欧美在线视频网站| 中文一区二区| 亚洲一二三区在线观看| 欧美吻胸吃奶大尺度电影| 一区二区成人精品| 香港成人在线视频| 亚洲一区中文| 久久精品二区| 一区二区亚洲精品国产| 免费在线看一区| 99精品热视频| 欧美在线视频一区二区| 亚洲婷婷在线| 国产精品永久在线| 久久久亚洲午夜电影| 欧美日韩精品欧美日韩精品一| 亚洲国产精品久久久久| 日韩午夜av在线| 国产精品毛片va一区二区三区| 亚洲视频一二三| 久久久国产精品亚洲一区| 亚洲国产精品传媒在线观看| 欧美国产精品日韩| 亚洲一区二区成人在线观看| 欧美日韩亚洲一区三区| 国产精品美女久久久| 欧美成年人视频| 亚洲性感激情| 精品69视频一区二区三区| 免费成人性网站| 先锋资源久久| 亚洲激情在线观看| 久久久久国产成人精品亚洲午夜| 在线观看福利一区| 国产精品自在欧美一区| 久久欧美中文字幕| 一区二区三区久久精品| 男男成人高潮片免费网站| 在线亚洲一区二区| 男女视频一区二区| 午夜精品久久久久久久99黑人| 亚洲国产精品va在线看黑人动漫| 久久精品国产免费| 亚洲国产精品成人一区二区| 国产精品一区久久久久| 欧美成人影音| 久久久久久久久久久成人| 亚洲一区高清| 亚洲乱码国产乱码精品精天堂| 欧美mv日韩mv国产网站| 久久久精品久久久久| 亚洲欧美中文日韩v在线观看| 日韩午夜免费视频| 欧美成人一品| 久久只有精品| 久久精品国产一区二区电影 | 亚洲国产精品免费| 久久一区二区精品| 欧美中文字幕不卡| 亚洲一区二区三区高清| 亚洲麻豆国产自偷在线| 国内精品一区二区三区| 亚洲激情视频在线| 亚洲国产精品美女| 国产精品国产三级国产专播精品人 | 久久精品国产视频| 亚洲国产精品悠悠久久琪琪| 亚洲在线免费视频| 亚洲黄网站黄| 国产精品色网| 欧美高清视频一区二区三区在线观看| 正在播放欧美视频| 免费视频一区| 性色av一区二区三区| 亚洲黄色免费电影| 国产精品亚洲美女av网站| 欧美不卡视频一区发布| 香蕉精品999视频一区二区| 日韩午夜精品| 亚洲毛片在线| 最新高清无码专区| 免费毛片一区二区三区久久久| 亚洲欧美日韩一区在线观看|