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

公告

<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>
            欧美精品国产精品| 一本一本久久| 亚洲欧洲另类| 欧美激情一区二区三区蜜桃视频 | 黄网站免费久久| 国产一区在线播放| 一区视频在线看| 亚洲精选一区二区| 性伦欧美刺激片在线观看| 久久精品夜色噜噜亚洲a∨| 老巨人导航500精品| 91久久精品美女| 一区二区国产精品| 久久久久久久久久久久久久一区| 欧美电影在线播放| 国产一区白浆| 一区二区三区欧美在线| 久久久天天操| aaa亚洲精品一二三区| 久久久九九九九| 国产精品久久午夜夜伦鲁鲁| 在线高清一区| 亚洲一区二区三区中文字幕| 久久久久国产一区二区| 亚洲伦理在线免费看| 久久久久久午夜| 国产日韩欧美另类| 一区二区三区 在线观看视| 久久综合国产精品| 亚洲一二区在线| 欧美精品尤物在线| 影音先锋日韩资源| 欧美一区91| 一区二区三区视频在线观看| 欧美成人有码| 在线日韩中文| 久久这里只有精品视频首页| 亚洲在线播放电影| 国产精品www色诱视频| 99国产精品视频免费观看| 久久亚洲精品欧美| 午夜精品一区二区三区在线播放| 欧美日韩一区二| 一本久久综合亚洲鲁鲁| 亚洲国产精品传媒在线观看| 久久一区免费| 国内精品伊人久久久久av一坑| 欧美亚洲视频一区二区| 在线视频欧美日韩| 欧美视频官网| 亚洲性线免费观看视频成熟| 亚洲美女在线视频| 欧美连裤袜在线视频| 亚洲精品日韩激情在线电影| 亚洲高清一区二| 欧美电影免费观看| 99re6这里只有精品| 亚洲欧美日韩国产中文| 99精品国产在热久久| 欧美成人免费大片| 另类天堂av| 亚洲国产小视频| 亚洲国产经典视频| 欧美精品成人| 亚洲天堂网在线观看| 一区二区国产精品| 国产免费亚洲高清| 久久婷婷蜜乳一本欲蜜臀| 久久国产精品亚洲va麻豆| 一区二区在线观看视频在线观看| 久久免费精品日本久久中文字幕| 久久精品视频99| 亚洲激情av在线| 亚洲激情国产精品| 欧美视频在线观看 亚洲欧| 亚洲特色特黄| 午夜日韩福利| 亚洲第一页在线| 亚洲免费大片| 国产日韩综合| 亚洲黄色天堂| 国产精品免费看片| 久热精品视频在线免费观看| 免费观看在线综合色| 亚洲视频欧洲视频| 欧美在线日韩在线| 亚洲九九精品| 久久成人人人人精品欧| 一区二区高清在线| 久久久www成人免费无遮挡大片| 99精品国产在热久久| 欧美伊久线香蕉线新在线| 亚洲美女av在线播放| 欧美在线日韩精品| 亚洲天天影视| 牛牛精品成人免费视频| 性8sex亚洲区入口| 欧美激情免费在线| 欧美在线一级视频| 欧美日韩和欧美的一区二区| 久久天天狠狠| 国产欧美精品日韩区二区麻豆天美| 欧美激情偷拍| 国产色爱av资源综合区| 亚洲啪啪91| 亚洲风情亚aⅴ在线发布| 亚洲在线视频网站| 亚洲一级在线| 欧美日韩国产精品自在自线| 欧美大片免费久久精品三p| 国产欧美日本| 一区二区三区欧美亚洲| 亚洲精品一二区| 久久久久久穴| 久久久夜精品| 国产美女精品视频免费观看| 一区二区激情视频| 中国女人久久久| 欧美韩日亚洲| 亚洲大片精品永久免费| 亚洲第一页自拍| 久久久精品视频成人| 99精品国产一区二区青青牛奶| 久久久亚洲一区| 国产欧美一区二区三区沐欲| 亚洲免费成人av| av不卡在线观看| 欧美福利一区二区| 欧美粗暴jizz性欧美20| 亚洲国产乱码最新视频| 久久综合影视| 亚洲丶国产丶欧美一区二区三区| 亚洲第一偷拍| 欧美极品色图| 一本一本a久久| 欧美亚洲一区在线| 国产在线观看一区| 久久九九99| 欧美福利专区| 亚洲精品一区二区三| 欧美日韩成人在线| 中文亚洲字幕| 久久国产精品亚洲va麻豆| 国产在线观看一区| 狂野欧美一区| 亚洲国产精品美女| 夜夜嗨av一区二区三区免费区| 欧美美女bb生活片| 亚洲视频精选在线| 久久国产一区| 亚洲第一天堂av| 欧美日在线观看| 性欧美1819sex性高清| 另类春色校园亚洲| 日韩视频在线观看| 国产精品日韩一区| 久久视频免费观看| 日韩午夜精品| 久久免费视频一区| 99精品国产99久久久久久福利| 国产精品人人爽人人做我的可爱 | 久久这里只有| 91久久在线| 久久本道综合色狠狠五月| 尤物精品在线| 欧美色网在线| 久久精品一区二区三区不卡牛牛| 欧美激情国产精品| 香蕉尹人综合在线观看| 亚洲第一精品影视| 国产精品视频一区二区高潮| 蜜桃久久精品乱码一区二区| 亚洲一级影院| 亚洲激情视频在线| 久久久久久久久久久久久9999| 一本色道久久加勒比精品| 国内外成人免费激情在线视频| 欧美剧在线观看| 久久视频精品在线| 亚洲女人天堂成人av在线| 亚洲国产小视频| 久久亚洲影院| 销魂美女一区二区三区视频在线| 亚洲激情图片小说视频| 国产日本欧美一区二区| 欧美日韩三级一区二区| 老司机精品视频一区二区三区| 亚洲中午字幕| 国产精品99久久久久久有的能看 | 午夜亚洲福利在线老司机| 亚洲第一精品夜夜躁人人躁| 先锋影音一区二区三区| 99精品国产福利在线观看免费| 黄色成人av| 国产日韩欧美制服另类| 国产精品网站在线播放| 欧美午夜精品久久久久免费视 | 亚洲欧洲一区二区三区久久| 国产一区二区三区视频在线观看| 国产精品户外野外|