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

公告

<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

統計

  • 隨筆 - 9
  • 文章 - 13
  • 評論 - 3
  • 引用 - 0

常用鏈接

留言簿(1)

隨筆分類

隨筆檔案

文章分類

文章檔案

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

2007年10月23日

使用標準C++的類型轉換符:static_cast、dynamic_cast、reinterdivt_cast、和const_cast

使用標準C++的類型轉換符:static_cast、dynamic_cast、reinterdivt_cast、和const_cast。

3.1 static_cast
用法:static_cast < type-id > ( exdivssion )
該運算符把exdivssion轉換為type-id類型,但沒有運行時類型檢查來保證轉換的安全性。它主要有如下幾種用法:
①用于類層次結構中基類和子類之間指針或引用的轉換。
  進行上行轉換(把子類的指針或引用轉換成基類表示)是安全的;
  進行下行轉換(把基類指針或引用轉換成子類表示)時,由于沒有動態類型檢查,所以是不安全的。
②用于基本數據類型之間的轉換,如把int轉換成char,把int轉換成enum。這種轉換的安全性也要開發人員來保證。
③把空指針轉換成目標類型的空指針。
④把任何類型的表達式轉換成void類型。

注意:static_cast不能轉換掉exdivssion的const、volitale、或者__unaligned屬性。


3.2 dynamic_cast
用法:dynamic_cast < type-id > ( exdivssion )
該運算符把exdivssion轉換成type-id類型的對象。Type-id必須是類的指針、類的引用或者void *;
如果type-id是類指針類型,那么exdivssion也必須是一個指針,如果type-id是一個引用,那么exdivssion也必須是一個引用。

dynamic_cast主要用于類層次間的上行轉換和下行轉換,還可以用于類之間的交叉轉換。
在類層次間進行上行轉換時,dynamic_cast和static_cast的效果是一樣的;
在進行下行轉換時,dynamic_cast具有類型檢查的功能,比static_cast更安全。
class B{
public:
int m_iNum;
virtual void foo();
};

class D:public B{
public:
char *m_szName[100];
};

void func(B *pb){
D *pd1 = static_cast(pb);
D *pd2 = dynamic_cast(pb);
}

在上面的代碼段中,如果pb指向一個D類型的對象,pd1和pd2是一樣的,并且對這兩個指針執行D類型的任何操作都是安全的;
但是,如果pb指向的是一個B類型的對象,那么pd1將是一個指向該對象的指針,對它進行D類型的操作將是不安全的(如訪問m_szName),
而pd2將是一個空指針。

另外要注意:B要有虛函數,否則會編譯出錯;static_cast則沒有這個限制。
這是由于運行時類型檢查需要運行時類型信息,而這個信息存儲在類的虛函數表(
關于虛函數表的概念,詳細可見)中,只有定義了虛函數的類才有虛函數表,
沒有定義虛函數的類是沒有虛函數表的。

另外,dynamic_cast還支持交叉轉換(cross cast)。如下代碼所示。
class A{
public:
int m_iNum;
virtual void f(){}
};

class B:public A{
};

class D:public A{
};

void foo(){
B *pb = new B;
pb->m_iNum = 100;

D *pd1 = static_cast(pb); //compile error
D *pd2 = dynamic_cast(pb); //pd2 is NULL
delete pb;
}

在函數foo中,使用static_cast進行轉換是不被允許的,將在編譯時出錯;而使用 dynamic_cast的轉換則是允許的,結果是空指針。


3.3 reindivter_cast
用法:reindivter_cast (exdivssion)
type-id必須是一個指針、引用、算術類型、函數指針或者成員指針。
它可以把一個指針轉換成一個整數,也可以把一個整數轉換成一個指針(先把一個指針轉換成一個整數,
在把該整數轉換成原類型的指針,還可以得到原先的指針值)。

該運算符的用法比較多。

3.4 const_cast
用法:const_cast (exdivssion)
該運算符用來修改類型的const或volatile屬性。除了const 或volatile修飾之外, type_id和exdivssion的類型是一樣的。
常量指針被轉化成非常量指針,并且仍然指向原來的對象;
常量引用被轉換成非常量引用,并且仍然指向原來的對象;常量對象被轉換成非常量對象。

Voiatile和const類試。舉如下一例:
class B{
public:
int m_iNum;
}
void foo(){
const B b1;
b1.m_iNum = 100; //comile error
B b2 = const_cast(b1);
b2. m_iNum = 200; //fine
}
上面的代碼編譯時會報錯,因為b1是一個常量對象,不能對它進行改變;
使用const_cast把它轉換成一個常量對象,就可以對它的數據成員任意改變。注意:b1和b2是兩個不同的對象。
 

== ===========================================

== dynamic_cast .vs. static_cast
== ===========================================

class B { ... };
class D : public B { ... };

void f(B* pb)
{

D* pd1 = dynamic_cast(pb);

D* pd2 = static_cast(pb);
}

If pb really points to an object of type D, then pd1 and pd2 will get the same value. They will also get the same value if pb == 0.

If pb points to an object of type B and not to the complete D class, then dynamic_cast will know enough to return zero. However, static_cast relies on the programmer’s assertion that pb points to an object of type D and simply returns a pointer to that supposed D object.

dynamic_cast可用于繼承體系中的向下轉型,即將基類指針轉換為派生類指針,比static_cast更嚴格更安全。dynamic_cast在執行效率上比static_cast要差一些,但static_cast在更寬上范圍內可以完成映射,這種不加限制的映射伴隨著不安全性。static_cast覆蓋的變換類型除類層次的靜態導航以外,還包括無映射變換、窄化變換(這種變換會導致對象切片,丟失信息)、用VOID*的強制變換、隱式類型變換等...


== ===========================================
== static_cast .vs. reinterdivt_cast
== ================================================

reinterdivt_cast是為了映射到一個完全不同類型的意思,這個關鍵詞在我們需要把類型映射回原有類型時用到它。我們映射到的類型僅僅是為了故弄玄虛和其他目的,這是所有映射中最危險的。(這句話是C++編程思想中的原話)

static_cast reinterdivt_cast 操作符修改了操作數類型。它們不是互逆的; static_cast 在編譯時使用類型信息執行轉換,在轉換執行必要的檢測(諸如指針越界計算, 類型檢查). 其操作數相對是安全的。另一方面;reinterdivt_cast 僅僅是重新解釋了給出的對象的比特模型而沒有進行二進制轉換, 例子如下:

int n=9; double d=static_cast < double > (n);

上面的例子中, 我們將一個變量從 int 轉換到 double 這些類型的二進制表達式是不同的。 要將整數 9 轉換到 雙精度整數 9static_cast 需要正確地為雙精度整數 d 補足比特位。其結果為 9.0。而reinterdivt_cast 的行為卻不同:

int n=9;

double d=reinterdivt_cast (n);

這次, 結果有所不同. 在進行計算以后, d 包含無用值. 這是因為 reinterdivt_cast 僅僅是復制 n 的比特位到 d, 沒有進行必要的分析.

因此, 你需要謹慎使用 reinterdivt_cast.

posted @ 2007-10-23 20:28 blues 閱讀(3199) | 評論 (0)編輯 收藏

2007年10月22日

offsetof 解析

 1offsetof(s,m)解析 offsetof(s,m)解析
 2 
 3今天看代碼時,發現一個有用的東東,offsetof(s,m),這是一個宏,定義如下:
 4
 5 #define offsetof(s,m) (size_t)&(((s *)0)->m)
 6 
 7 然后到網上查了一下,發現還真的是很有用,附帶一位大俠的解說:
 8
 9  struct   AAA   
10  {   
11  int   i;   
12  int   j;   
13  }
;   
14    
15  struct AAA *pAAA;   
16  pAAA=new AAA;   
17  這時,pAAA實際上是一個Pointer, 指向某一確定的內存地址,比如0x1234;   
18  而 pAAA->i 整體是一個int型變量,其地址是&(pAAA->i) ,'&'為取址運算符;   
19  那么&(pAAA->i)一定等于0x1234,因為i是結構體AAA的第一個元素。   
20  而&(pAAA->j)一定是0x1234 + 0x4 = 0x1238; 因為sizeof(int= 4;
21    
22  這個做法的巧妙之處就是:它把“0”作為上例中的pAAA,那么 &(pAAA->j)就是j的   
23  offset啦
24
25  解析結果是:   
26  (s   *)0 ,將 0 強制轉換為Pointer to   "s"     
27  可以記 pS = (s *)0 ,pS是指向s的指針,它的值是0;   
28  那么pS->m就是m這個元素了,而&(pS->m)就是m的地址,而在本例中就是offset啦   
29    
30  再把結果強制轉換為size_t型的就OK 了,size_t其實也就是int啦!!    
31 
32 
33

posted @ 2007-10-22 16:02 blues 閱讀(4229) | 評論 (2)編輯 收藏

2007年1月26日

2006年世界頂級殺毒軟件排名

http://blog.cnetnews.com.cn/hand/keji/3658/

posted @ 2007-01-26 14:55 blues 閱讀(297) | 評論 (0)編輯 收藏

2006年12月11日

com中以結構體作為接口參數

?1 通過VARIANT;???
?2 ??VARIANT???varData;(出參)???
?3 ????
?4 ??MYSTRUCT??? * pMyData??? = ???NULL;???
?5 ????
?6 ??pMyData??? = ???(MYSTRUCT * )CoTaskMemAlloc( sizeof (MYSTRUCT));???
?7 ??.???
?8 ????
?9 ??varData.byref??? = ???(LPVOID)pMyData;???
10 ????
11 ??在調用文件里,同樣定義???
12 ??VARIANT???varData(入參)???
13 ????
14 ??MYSTRUCT??? * pMyData??? = ???NULL;???
15 ????
16 ??pMyData??? = ???(MYSTRUCT * )varData.byref;???
17 ????
18 ??CoTaskMemFree((LPVOID)pMyData);

posted @ 2006-12-11 15:39 blues 閱讀(995) | 評論 (0)編輯 收藏

2006年11月7日

Getting an (ATL) ActiveX control to print from Office Applications

13 votes for this article.
Popularity: 4.73. Rating: 4.25 out of 5.

Introduction

Seeing as this is my first ever post to CodeProject, let me do a quick introduction as to who I am and what I do. I have been working in one form of C and C++ or another for as long as I can remember (among the other myriad of languages that I've run into). Nowadays, most of my development is focused on Microsoft Windows platforms, and is done in VC6, VC2002.NET. I am heavily entrenched in BI (Business Intelligence) development, and in my spare time develop little ActiveX controls and games etc...

The plot

Having learnt COM a while ago, I made the obvious progression to ATL to ease the development of boilerplate code, and to leverage off Microsoft's template library. As my experience grew, I ventured into creating ActiveX controls using the ATL framework ... and life was good. I could spew out a fairly useful (albeit not overly complex) control within a short period of time. Recently, I was asked to create a KPI (Key Performance Indicator) control that could be embedded in a web page and an Excel document. Obviously based on my experience (which was obviously not vast) I thought that this would be no problem and off I went, creating code that would meet the functional spec (we all work to these don't we :)).

A couple of days later the control was finished and the final tests were being run when someone asked me to print a hardcopy of an example spreadsheet with the embedded control. This is where my nightmares began. Not only did my control not print, but there was no clear indication as to why it didn't print. And so my exploration into this apparent mystery began.

Have you ever tried to include 3rd party ActiveX controls into an Office document? They sure seem to work fine, but most (apart from the Microsoft controls) don't seem to render themselves when you request a Print Preview or a simple Print of the worksheet or document. So, if any of you have ever had this problem, or have never dabbled with this, but think that you may be heading this way, take note of this, cos it might save you hours of frustration and frantic searching on MSDN and Google.

So what now?

The first thing one needs to realize is that even though we have been blessed with Office 2000 and Office XP, the printing architecture still uses the old Windows-format metafile for its printing operations. This metafile format was used in 16-bit Windows-based applications (thinks back to Win3.1). Now, this becomes a major problem for ActiveX developers who wish their controls to be printable from within Office applications, because this old metafile format only supported a limited set of GDI functionality. The list of supported GDI functions can be found here.

Now that you are armed with your limited function set, you cringe with the realization that you can no longer create memory DC's, you can no longer use your lovely DrawText() functions and you can definitely no longer call GetTextExtentPoint32() function. However, those realizations only hold true for the instance of when your control is being rendered to an old format metafile. So how do we empower our control to know that its being rendered to an old format metafile? Simple, we use the GetObjectType() function and check if the result is equal to OBJ_METADC (old metafile format):

HRESULT Cxxxxx::OnDraw(ATL_DRAWINFO& di)
{
    HDC hdc = di.hdcDraw;
    bool bMetaFile = false;

    //// lets check if we're drawing to an old// metafile format.. (like Office printing)//if ( GetObjectType(hdc) == OBJ_METADC )
        bOldMetaFile = true;

    //// the rest of your code...//
}

For interest, the opposite of OBJ_METADC is OBJ_ENHMETADC (refer to this MSDN document).

Now that we know if we're drawing to an old metafile format or not, we can write adaptive code to cater for each instance or we can just write all our drawing logic using the limited set of functionality that is supported by the old metafile DC.

What about fonts and text extents?

As any ATL ActiveX developer knows, using fonts in AX controls provides for limited amount of fun. The typical piece of code would probably look something like this:

																//
																// ... some code
																//
    CComQIPtr<IFont, &IID_IFont> pFont(m_pFont);
    TEXTMETRICOLE tm;if ( pFont != NULL )
    {
        pFont->get_hFont(&newFont);
        pFont->AddRefHfont(newFont);
        pFont->QueryTextMetrics(&tm);
        oldFont = (HFONT) SelectObject(dc, newFont);
    }

The Bolded lines of code are ones that I didn't use regularly, due to the fact that I didn't really need to know about the breakdown of my font's details because I had access to GetTextExtentPoint32() function. Unfortunately, in this scenario, we don't have access to that function to determine how wide (in pixels) our text is going to be. But there is another way to calculate this fairly accurately, as is demonstrated in the code below:

																//
																// assume that we have called QueryTextMetrics() and
																// have a filled TEXTMETRICOLE structure called tm
																//
CComBSTR strText(_T("Hello, world"));
SIZE sz;

sz.cx = strText.Length() * tm.tmAveCharWidth;
sz.cy = tm.tmHeight;

Having said this, there are many other functions that I use a lot that I can't use if I want my ActiveX control to be printable by Office, but as with GetTextExtentPoint32() and its respective replacement, there is always a way to replace these functions using Old-Metafile-Safe-Drawing-Code (OMSDC). *maybe that acronym will catch on*

Conclusion

When creating an ActiveX control that you know will be used inside Office applications, and will most probably be printed, remember to stick to these guidelines when developing your drawing logic. I was fairly shocked by how little information was available in the MSDN and online in general, while I was searching for information on how to enable my ActiveX control to print from within an Office application. There are hundreds of documents on ActiveX controls being printed from within Internet Explorer, but none address this particular issue. Perhaps I was looking in the wrong places. Hopefully this article will help one or more of you one day ;)

Acknowledgment

Many thanks to Igor Tandetnik for pointing me in the right direction on this.

About Peter Mares

posted @ 2006-11-07 17:38 blues 閱讀(542) | 評論 (0)編輯 收藏
轉===如何用ATL創建ActiveX控件(牛人翻譯的)

http://www.czvc.com/down.asp?id=105

posted @ 2006-11-07 16:53 blues 閱讀(529) | 評論 (0)編輯 收藏

2006年9月12日

DB2免費版

http://www.ibm.com/developerworks/cn/downloads/im/udbexp/

posted @ 2006-09-12 14:08 blues 閱讀(426) | 評論 (0)編輯 收藏

2006年8月25日

美國讓人噴飯的法律

?

這美國還有這等噴飯的法律,實屬大開眼界,看來有機會要好好善加利用了!!現與各位一起分享:?
美國聯邦法律規定:?

1)不得與豪豬發生性關系。(*,誰敢呀)?
2)每周四晚6:00以后不得放P。(以后還真要小心了,別一不留神坐牢了還不知為?
啥)?
3)任何人不得銷售其子女。(好象中國也不許吧)?

阿拉巴馬州:?
無論任何時候,將冰激淋卷放在口袋里是違法的。(有病丫的)?

阿肯色州:?
男性可以合法毆打其配偶,但每月最多一次。(估計很多東北的兄弟知道了一定想?
移民阿肯色了,可也有例外呀,克林頓就是阿肯色的前州長,咋老被喜萊莉扁呀)?

亞利桑納州:?
任何房間中不得有兩根以上的假****。(估計那州的最高法官丫是個變態狂!)?

夏威夷州:?
不得將谷物放在耳朵里。(神經病,以為偷太空種子呀)?

印弟安納州:?
1)任何年滿18歲的男性,若與17歲以下的女性發生性關系,而且當時她又沒穿鞋?
襪,那將課重罪。(兄弟們千萬注意了呀!別全脫了)?
2)圓周率在該州法定為4。(活活氣死咱祖沖之前輩呀!)?

愛荷華州:?
1)任何只有一只上臂的鋼琴演奏者必須免費演奏。(嚴重歧視殘疾藝術表演家)?
2)任何有胃病的男性不得在公共場所與女性接吻。(接吻和胃有關系嗎?男性胃癌?
晚期患者的福音)?

紐約州:?
1)不得僅為娛樂而將球砸向他人腦袋。(謀殺可以不?真的腦子進水了)?
2)10:00以后不得穿拖鞋。(光腳吧)?

新澤西州:?
凡謀殺時不得穿防彈背心。(管得著嗎,警察這么沒自信!)?

北卡州:?
任何一位未婚男性與一為未婚女性,如果在任何旅館或汽車旅館登記為已婚,那么?
他們即算合法夫妻了。(想帶小蜜開房的兄弟們千萬別去那州呀!)?

賓西法尼亞州:?
不得在浴室唱歌。(難怪在賓大商學院的同胞都不會K歌)?

南卡州:?
僅在每周六,男性被允許在法院的門前臺階上合法毆打其配偶。(這是啥規定,郁?
悶ING)?

猶他州:?
1)不喝牛奶違法。(喝不完援助非洲難民呀,干么為難自己!難怪俺一只要喝牛?
奶就拉肚子的朋友從猶大轉到紐約了,保命要緊呀。)?
2)不得在正在執行急救任務的救護車后座上Make?Love。(這好理解,怕病人看見血管?
爆裂么!哈哈)?

posted @ 2006-08-25 17:53 blues 閱讀(626) | 評論 (0)編輯 收藏

2006年8月23日

上海印象

posted @ 2006-08-23 15:21 blues 閱讀(400) | 評論 (1)編輯 收藏
僅列出標題  
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            欧美顶级少妇做爰| 久久久五月天| 一本色道久久综合亚洲精品小说| 亚洲天堂av综合网| 免费高清在线视频一区·| 亚洲欧美国产高清va在线播| 欧美极品色图| 欧美在线亚洲综合一区| 久久久久国产精品一区二区| 国产亚洲欧美一级| 午夜精品福利一区二区三区av| 欧美激情一区二区三区在线视频| 亚洲欧美日韩精品久久久久| 亚洲精品国产精品久久清纯直播| 国产日韩欧美a| 国产精品热久久久久夜色精品三区| 日韩视频在线免费观看| 狠狠久久亚洲欧美专区| 欧美激情综合五月色丁香小说 | 欧美综合激情网| 欧美日韩伦理在线| 久久久国产精彩视频美女艺术照福利| 99re6这里只有精品| 亚洲日本激情| 欧美激情精品久久久久久黑人| 欧美在线精品免播放器视频| 香蕉久久久久久久av网站| 亚洲一区综合| 久久久久国产一区二区三区四区| 久久精品国产综合| 欧美国产精品中文字幕| 亚洲国产精品成人va在线观看| 欧美激情视频给我| 99在线视频精品| 久久精品国产第一区二区三区最新章节| 亚洲天堂偷拍| 久久9热精品视频| 久久亚洲国产精品日日av夜夜| 久久久久久高潮国产精品视| 欧美成年人视频网站| 日韩视频在线免费观看| 欧美在线视屏| 亚洲免费观看高清在线观看 | 美女精品在线观看| 亚洲经典三级| 女生裸体视频一区二区三区| 日韩视频在线一区| 欧美连裤袜在线视频| 激情一区二区三区| 99re66热这里只有精品4| 亚洲一卡久久| 在线一区二区日韩| 欧美日韩精品综合| 亚洲国产日韩精品| 蜜臀av性久久久久蜜臀aⅴ四虎 | 欧美大片在线影院| 欧美91大片| 欧美呦呦网站| 欧美精品在欧美一区二区少妇| 亚洲一区二区三区四区中文| 午夜欧美精品久久久久久久| 最新国产の精品合集bt伙计| 中国女人久久久| 亚洲人成在线免费观看| 99热精品在线| 亚洲国产女人aaa毛片在线| 亚洲精品久久久久久久久久久| 欧美日韩高清在线| 麻豆成人91精品二区三区| 欧美午夜一区二区三区免费大片 | 久久这里只精品最新地址| 欧美福利视频在线| 欧美gay视频激情| 国产日韩一级二级三级| 亚洲欧洲日本专区| 在线观看一区| 欧美尤物一区| 久久天堂成人| 亚洲国产精品毛片| 久久蜜桃av一区精品变态类天堂| 久久国产福利国产秒拍| 国产欧美日韩91| 久久99伊人| 亚洲高清资源| 一区二区三区四区国产| 欧美日韩国产成人高清视频| 亚洲经典在线看| 亚洲综合色自拍一区| 国产欧美一区二区三区久久人妖 | 久久偷看各类wc女厕嘘嘘偷窃| 久久精品日韩| 亚洲第一精品久久忘忧草社区| 亚洲国产精品久久久久婷婷老年| 欧美成人精品影院| 在线亚洲一区二区| 久久久久久香蕉网| 亚洲欧洲日产国产网站| 久热精品在线| 亚洲黄色免费网站| 欧美国产日本在线| 亚洲精品一区二区三区99| 亚洲女同性videos| 亚洲美女精品久久| 国内精品久久久久伊人av| 欧美日本国产| 久久夜色精品国产亚洲aⅴ| 亚洲一区www| 欧美刺激午夜性久久久久久久| 亚洲一区美女视频在线观看免费| 一区精品在线播放| 国产欧美在线视频| 国产精品美腿一区在线看| 欧美日韩三级一区二区| 欧美电影在线观看完整版| 久久黄色小说| 久久精品国产一区二区三| 亚洲欧美在线aaa| 亚洲欧美日韩精品久久久| 亚洲乱码国产乱码精品精98午夜| 免费观看成人鲁鲁鲁鲁鲁视频 | 一区二区三区精品视频| 久久综合久久综合久久| 久久婷婷亚洲| 欧美成人一区二免费视频软件| 久久岛国电影| 男人的天堂亚洲在线| 亚洲福利视频在线| 亚洲国产高清高潮精品美女| 亚洲精品国产精品久久清纯直播| 亚洲日韩欧美视频| 国产精品99久久久久久久久| 亚洲一区图片| 免费成人小视频| 欧美另类在线观看| 国产精品亚洲一区二区三区在线| 亚洲精品欧美一区二区三区| 欧美高清在线视频| 亚洲欧美日韩一区二区在线| 午夜精品视频在线观看| 麻豆av一区二区三区久久| 亚洲永久精品大片| 欧美高清视频一区| 黄色成人小视频| 欧美一区二区播放| 国产精品99久久久久久久女警| 久久大逼视频| 狠狠狠色丁香婷婷综合激情| 亚洲一区欧美| 亚洲精品九九| 免费国产自线拍一欧美视频| 国产日韩亚洲欧美精品| 午夜精品一区二区三区在线视| 亚洲电影一级黄| 欧美激情一二区| 久久网站免费| 国产午夜久久久久| 欧美一区二视频在线免费观看| 艳妇臀荡乳欲伦亚洲一区| 欧美精品在线免费观看| 亚洲美女性视频| 日韩视频在线播放| 国产精品成人免费视频 | 欧美精品成人| 亚洲人成人一区二区三区| 欧美国产精品一区| 欧美日韩ab| 亚洲免费在线观看视频| 性18欧美另类| 亚洲人午夜精品免费| 日韩午夜剧场| 极品少妇一区二区三区精品视频| 欧美成人a视频| 国产精品久久久久久久浪潮网站| 久久成人久久爱| 裸体丰满少妇做受久久99精品| 这里只有精品丝袜| 久久精品一区二区三区中文字幕| 91久久国产综合久久| 亚洲激情在线| 欧美一区综合| 亚洲欧美韩国| 欧美日韩国产二区| 你懂的国产精品永久在线| 国产精品久久久99| 亚洲国产精品成人综合| 国内成人精品2018免费看| 亚洲人成免费| 136国产福利精品导航网址应用| 亚洲午夜一二三区视频| av成人国产| 亚洲国产高清一区| 国产精品丝袜xxxxxxx| 亚洲精品久久久蜜桃| 亚洲毛片视频| 欧美二区在线观看| 亚洲高清资源| 亚洲视频在线观看网站| 欧美精品色一区二区三区| 亚洲人被黑人高潮完整版| 亚洲黄色有码视频|