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

JACKY_ZZ[貓貓愛吃魚]

春風(fēng)拂面兩頰紅,秋葉灑地一片金。 夏荷搖曳一身輕,冬雪覆蓋大地銀。
posts - 30, comments - 123, trackbacks - 0, articles - 0

[C/C++] union初探

Posted on 2007-08-06 17:31 jacky_zz 閱讀(1347) 評(píng)論(4)  編輯 收藏 引用 所屬分類: C/C++
這幾天在看MFC深入淺出,看到一個(gè)union的定義,代碼如下:
  1union MessageMapFunctions
  2{
  3    AFX_PMSG pfn;   // generic member function pointer
  4
  5    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_D)(CDC*);
  6    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_b)(BOOL);
  7    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_u)(UINT);
  8    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_h)(HANDLE);
  9    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_W_u_u)(CWnd*, UINT, UINT);
 10    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_W_COPYDATASTRUCT)(CWnd*, COPYDATASTRUCT*);
 11    BOOL (AFX_MSG_CALL CCmdTarget::*pfn_b_HELPINFO)(LPHELPINFO);
 12    HBRUSH (AFX_MSG_CALL CCmdTarget::*pfn_B_D_W_u)(CDC*, CWnd*, UINT);
 13    HBRUSH (AFX_MSG_CALL CCmdTarget::*pfn_B_D_u)(CDC*, UINT);
 14    int (AFX_MSG_CALL CCmdTarget::*pfn_i_u_W_u)(UINT, CWnd*, UINT);
 15    int (AFX_MSG_CALL CCmdTarget::*pfn_i_u_u)(UINT, UINT);
 16    int (AFX_MSG_CALL CCmdTarget::*pfn_i_W_u_u)(CWnd*, UINT, UINT);
 17    int (AFX_MSG_CALL CWnd::*pfn_i_s)(LPTSTR);
 18    LRESULT (AFX_MSG_CALL CWnd::*pfn_l_w_l)(WPARAM, LPARAM);
 19    LRESULT (AFX_MSG_CALL CWnd::*pfn_l_u_u_M)(UINT, UINT, CMenu*);
 20    void (AFX_MSG_CALL CWnd::*pfn_v_v)();
 21    int (AFX_MSG_CALL CWnd::*pfn_i_u)(UINT);
 22    HCURSOR (AFX_MSG_CALL CWnd::*pfn_C_v)();
 23    UINT (AFX_MSG_CALL CWnd::*pfn_u_u)(UINT);
 24    BOOL (AFX_MSG_CALL CWnd::*pfn_b_v)();
 25    void (AFX_MSG_CALL CWnd::*pfn_v_u)(UINT);
 26    void (AFX_MSG_CALL CWnd::*pfn_v_u_u)(UINT, UINT);
 27    void (AFX_MSG_CALL CWnd::*pfn_v_i_i)(intint);
 28    void (AFX_MSG_CALL CWnd::*pfn_v_u_u_u)(UINT, UINT, UINT);
 29    void (AFX_MSG_CALL CWnd::*pfn_v_u_i_i)(UINT, intint);
 30    void (AFX_MSG_CALL CWnd::*pfn_v_w_l)(WPARAM, LPARAM);
 31    void (AFX_MSG_CALL CWnd::*pfn_v_b_W_W)(BOOL, CWnd*, CWnd*);
 32    void (AFX_MSG_CALL CWnd::*pfn_v_D)(CDC*);
 33    void (AFX_MSG_CALL CWnd::*pfn_v_M)(CMenu*);
 34    void (AFX_MSG_CALL CWnd::*pfn_v_M_u_b)(CMenu*, UINT, BOOL);
 35    void (AFX_MSG_CALL CWnd::*pfn_v_W)(CWnd*);
 36    void (AFX_MSG_CALL CWnd::*pfn_v_W_u_u)(CWnd*, UINT, UINT);
 37    void (AFX_MSG_CALL CWnd::*pfn_v_W_p)(CWnd*, CPoint);
 38    void (AFX_MSG_CALL CWnd::*pfn_v_W_h)(CWnd*, HANDLE);
 39    void (AFX_MSG_CALL CWnd::*pfn_v_u_W)(UINT, CWnd*);
 40    void (AFX_MSG_CALL CWnd::*pfn_v_u_W_b)(UINT, CWnd*, BOOL);
 41    void (AFX_MSG_CALL CWnd::*pfn_v_u_u_W)(UINT, UINT, CWnd*);
 42    void (AFX_MSG_CALL CWnd::*pfn_v_s)(LPTSTR);
 43    void (AFX_MSG_CALL CWnd::*pfn_v_u_cs)(UINT, LPCTSTR);
 44    void (AFX_MSG_CALL CWnd::*pfn_v_i_s)(int, LPTSTR);
 45    int (AFX_MSG_CALL CWnd::*pfn_i_i_s)(int, LPTSTR);
 46    UINT (AFX_MSG_CALL CWnd::*pfn_u_p)(CPoint);
 47    UINT (AFX_MSG_CALL CWnd::*pfn_u_v)();
 48    void (AFX_MSG_CALL CWnd::*pfn_v_b_NCCALCSIZEPARAMS)(BOOL, NCCALCSIZE_PARAMS*);
 49    void (AFX_MSG_CALL CWnd::*pfn_v_v_WINDOWPOS)(WINDOWPOS*);
 50    void (AFX_MSG_CALL CWnd::*pfn_v_u_u_M)(UINT, UINT, HMENU);
 51    void (AFX_MSG_CALL CWnd::*pfn_v_u_p)(UINT, CPoint);
 52    void (AFX_MSG_CALL CWnd::*pfn_v_u_pr)(UINT, LPRECT);
 53    BOOL (AFX_MSG_CALL CWnd::*pfn_b_u_s_p)(UINT, short, CPoint);
 54    LRESULT (AFX_MSG_CALL CWnd::*pfn_l_v)();
 55
 56    // type safe variant for thread messages
 57    void (AFX_MSG_CALL CWinThread::*pfn_THREAD)(WPARAM, LPARAM);
 58
 59    // specific type safe variants for WM_COMMAND and WM_NOTIFY messages
 60    void (AFX_MSG_CALL CCmdTarget::*pfnCmd_v_v)();
 61    BOOL (AFX_MSG_CALL CCmdTarget::*pfnCmd_b_v)();
 62    void (AFX_MSG_CALL CCmdTarget::*pfnCmd_v_u)(UINT);
 63    BOOL (AFX_MSG_CALL CCmdTarget::*pfnCmd_b_u)(UINT);
 64
 65    void (AFX_MSG_CALL CCmdTarget::*pfnNotify_v_NMHDR_pl)(NMHDR*, LRESULT*);
 66    BOOL (AFX_MSG_CALL CCmdTarget::*pfnNotify_b_NMHDR_pl)(NMHDR*, LRESULT*);
 67    void (AFX_MSG_CALL CCmdTarget::*pfnNotify_v_u_NMHDR_pl)(UINT, NMHDR*, LRESULT*);
 68    BOOL (AFX_MSG_CALL CCmdTarget::*pfnNotify_b_u_NMHDR_pl)(UINT, NMHDR*, LRESULT*);
 69    void (AFX_MSG_CALL CCmdTarget::*pfnCmdUI_v_C)(CCmdUI*);
 70    void (AFX_MSG_CALL CCmdTarget::*pfnCmdUI_v_C_u)(CCmdUI*, UINT);
 71
 72    void (AFX_MSG_CALL CCmdTarget::*pfnCmd_v_pv)(void*);
 73    BOOL (AFX_MSG_CALL CCmdTarget::*pfnCmd_b_pv)(void*);
 74
 75//OLD
 76    // specific type safe variants for WM-style messages
 77//    BOOL    (AFX_MSG_CALL CWnd::*pfn_bD)(CDC*);
 78//    BOOL    (AFX_MSG_CALL CWnd::*pfn_bb)(BOOL);
 79//    BOOL    (AFX_MSG_CALL CWnd::*pfn_bWww)(CWnd*, UINT, UINT);
 80//    BOOL    (AFX_MSG_CALL CWnd::*pfn_bHELPINFO)(HELPINFO*);
 81//    BOOL    (AFX_MSG_CALL CWnd::*pfn_bWCDS)(CWnd*, COPYDATASTRUCT*);
 82//    HBRUSH  (AFX_MSG_CALL CWnd::*pfn_hDWw)(CDC*, CWnd*, UINT);
 83//    HBRUSH  (AFX_MSG_CALL CWnd::*pfn_hDw)(CDC*, UINT);
 84//    int     (AFX_MSG_CALL CWnd::*pfn_iwWw)(UINT, CWnd*, UINT);
 85//    int     (AFX_MSG_CALL CWnd::*pfn_iww)(UINT, UINT);
 86//    int     (AFX_MSG_CALL CWnd::*pfn_iWww)(CWnd*, UINT, UINT);
 87//    int     (AFX_MSG_CALL CWnd::*pfn_is)(LPTSTR);
 88//    LRESULT (AFX_MSG_CALL CWnd::*pfn_lwl)(WPARAM, LPARAM);
 89//    LRESULT (AFX_MSG_CALL CWnd::*pfn_lwwM)(UINT, UINT, CMenu*);
 90//    void    (AFX_MSG_CALL CWnd::*pfn_vv)(void);
 91
 92//    void    (AFX_MSG_CALL CWnd::*pfn_vw)(UINT);
 93//    void    (AFX_MSG_CALL CWnd::*pfn_vww)(UINT, UINT);
 94//    void    (AFX_MSG_CALL CWnd::*pfn_vvii)(intint);
 95//    void    (AFX_MSG_CALL CWnd::*pfn_vwww)(UINT, UINT, UINT);
 96//    void    (AFX_MSG_CALL CWnd::*pfn_vwii)(UINT, intint);
 97//    void    (AFX_MSG_CALL CWnd::*pfn_vwl)(WPARAM, LPARAM);
 98//    void    (AFX_MSG_CALL CWnd::*pfn_vbWW)(BOOL, CWnd*, CWnd*);
 99//    void    (AFX_MSG_CALL CWnd::*pfn_vD)(CDC*);
100//    void    (AFX_MSG_CALL CWnd::*pfn_vM)(CMenu*);
101//    void    (AFX_MSG_CALL CWnd::*pfn_vMwb)(CMenu*, UINT, BOOL);
102
103//    void    (AFX_MSG_CALL CWnd::*pfn_vW)(CWnd*);
104//    void    (AFX_MSG_CALL CWnd::*pfn_vWww)(CWnd*, UINT, UINT);
105//    void    (AFX_MSG_CALL CWnd::*pfn_vWp)(CWnd*, CPoint);
106//    void    (AFX_MSG_CALL CWnd::*pfn_vWh)(CWnd*, HANDLE);
107//    void    (AFX_MSG_CALL CWnd::*pfn_vwW)(UINT, CWnd*);
108//    void    (AFX_MSG_CALL CWnd::*pfn_vwWb)(UINT, CWnd*, BOOL);
109//    void    (AFX_MSG_CALL CWnd::*pfn_vwwW)(UINT, UINT, CWnd*);
110//    void    (AFX_MSG_CALL CWnd::*pfn_vwwx)(UINT, UINT);
111//    void    (AFX_MSG_CALL CWnd::*pfn_vs)(LPTSTR);
112//    void    (AFX_MSG_CALL CWnd::*pfn_vOWNER)(int, LPTSTR);   // force return TRUE
113//    int     (AFX_MSG_CALL CWnd::*pfn_iis)(int, LPTSTR);
114//    UINT    (AFX_MSG_CALL CWnd::*pfn_wp)(CPoint);
115//    UINT    (AFX_MSG_CALL CWnd::*pfn_wv)(void);
116    void    (AFX_MSG_CALL CWnd::*pfn_vPOS)(WINDOWPOS*);
117    void    (AFX_MSG_CALL CWnd::*pfn_vCALC)(BOOL, NCCALCSIZE_PARAMS*);
118    void    (AFX_MSG_CALL CWnd::*pfn_vwp)(UINT, CPoint);
119    void    (AFX_MSG_CALL CWnd::*pfn_vwwh)(UINT, UINT, HANDLE);
120    BOOL    (AFX_MSG_CALL CWnd::*pfn_bwsp)(UINT, short, CPoint);
121//    void    (AFX_MSG_CALL CWnd::*pfn_vws)(UINT, LPCTSTR);
122};

而調(diào)用的方法只是指定了一個(gè)函數(shù)指針,而函數(shù)指針的定義為:
typedef void (AFX_MSG_CALL CCmdTarget::*AFX_PMSG)(void);
起初一點(diǎn)也不明白這樣的定義怎么指向?qū)嶋H執(zhí)行的函數(shù)?懷著這樣的疑問,我自己做了個(gè)測(cè)試,才明白其中的真實(shí)含義。union與struct的區(qū)別是:union為每個(gè)成員共享一個(gè)地址空間,而struct為每個(gè)成員都分配一個(gè)地址空間。這樣就好理解了,不管union里定義了多少個(gè)成員,每個(gè)成員都使用同一個(gè)內(nèi)存地址,而struct的每個(gè)成員的內(nèi)存地址卻都不相同。
測(cè)試代碼如下:

 1#include "stdafx.h"
 2
 3typedef void (*FUNC)(void);
 4
 5typedef void (*Func01)(intint);
 6typedef double (*Func02)(doubledouble);
 7typedef int (*Func03)(intint);
 8
 9void Test01(intint);
10double Test02(doubledouble);
11int Test03(intint);
12
13union UnionTest {
14    FUNC pFunc;
15
16    Func01 func01;
17    Func02 func02;
18    Func03 func03;
19};
20
21int _tmain(int argc, char* argv[])
22{
23    system("cls");
24    printf("此程序模仿了MFC中的消息函數(shù)分配機(jī)制\n");
25    union UnionTest test;
26
27    printf("(FUNC)(static_cast< void (*)(int, int) > (Test01))\n");
28    test.pFunc = (FUNC)(static_cast< void (*)(intint> (Test01));
29    printf("%p, %p, %p\n", test.func01, test.func02, test.func03);
30
31    test.func01(10,10);
32    test.func02(10.00120.002);
33    test.func03(10,10);
34    printf("\n");
35
36    printf("(FUNC)(static_cast< double (*)(double, double) > (Test02))\n");
37    test.pFunc = (FUNC)(static_cast< double (*)(doubledouble> (Test02));
38    printf("%p, %p, %p\n", test.func01, test.func02, test.func03);
39
40    test.func01(10,10);
41    double xx = test.func02(10.00120.002);
42    test.func03(10,10);
43    printf("\n");
44
45    printf("(FUNC)(static_cast< int (*)(int, int) > (Test03))\n");
46    test.pFunc = (FUNC)(static_cast< int (*)(intint> (Test03));
47    printf("%p, %p, %p\n", test.func01, test.func02, test.func03);
48
49    test.func01(10,10);
50    double y01 = test.func02(10.00120.002);
51    int yy = test.func03(10,10);
52
53    return 0;
54}
55
56void Test01(int x, int y) {
57    printf("hehe, test it. x=%d, y=%d\n", x, y);
58}
59
60double Test02(double x, double y) {
61    double sum =x+y;
62    printf("sum double: %10.10f+%10.10f=%10.10f\nx address:%p\ny address:%p\n",x,y,sum, &x, &y);
63    return sum;
64}
65
66int Test03(int x, int y) {
67    int sum =x+y;
68    printf("sum int: %d+%d=%d\n",x,y,sum);
69    return sum;
70}
輸出結(jié)果如下:
 1此程序模仿了MFC中的消息函數(shù)分配機(jī)制
 2(FUNC)(static_cast< void (*)(intint> (Test01))
 3004010000040100000401000
 4hehe, test it. x=10, y=10
 5hehe, test it. x=309237645, y=1076101251
 6hehe, test it. x=10, y=10
 7
 8(FUNC)(static_cast< double (*)(doubledouble> (Test02))
 9004010200040102000401020
10sum double0.0000000000+0.0000000000=0.0000000000
11x address:0012FEB0
12y address:0012FEB8
13sum double10.0010000000+20.0020000000=30.0030000000
14x address:0012FED8
15y address:0012FEE0
16sum double0.0000000000+10.0010000000=10.0010000000
17x address:0012FED0
18y address:0012FED8
19
20(FUNC)(static_cast< int (*)(intint> (Test03))
21004010700040107000401070
22sum int10+10=20
23sum int309237645+1076101251=1385338896
24sum int10+10=20
從輸出結(jié)果可以看出,union的每個(gè)成員的內(nèi)存地址都是一樣的。 這樣就好理解union MessageMapFunctions的真實(shí)作用了。

Feedback

# re: union初探  回復(fù)  更多評(píng)論   

2007-11-25 10:36 by aspmaster
不錯(cuò),雖然候Sir在深入淺出中說了,但當(dāng)時(shí)還是沒有看明白

# re: union初探  回復(fù)  更多評(píng)論   

2012-07-09 10:34 by HooperStephanie21
The <a href="http://goodfinance-blog.com">loans</a> are useful for people, which would like to ground their own business. As a fact, this is comfortable to get a short term loan.

# re: union初探  回復(fù)  更多評(píng)論   

2013-03-25 14:10 by site
Look over EssaysLeader rewiew (best-essay-sites.com), select top-notch firm and purchase professionally written essays from competent writers.
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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麻豆的观看方式| 亚洲精品美女91| 一区免费观看| 国产一区二区精品丝袜| 国产精品大片wwwwww| 欧美激情国产精品| 美女91精品| 久久久久久97三级| 性欧美8khd高清极品| 亚洲香蕉网站| 一本色道久久综合亚洲精品不卡| 欧美激情1区2区3区| 美国三级日本三级久久99| 久久国产精品亚洲va麻豆| 香蕉久久国产| 香蕉成人伊视频在线观看| 亚洲中字黄色| 亚洲一级黄色av| 正在播放日韩| 中日韩高清电影网| 一区二区三区国产精品| 一本久久a久久精品亚洲| 亚洲人成网站在线播| 亚洲欧洲日产国产网站| 亚洲欧洲精品一区二区精品久久久| 影音先锋另类| 亚洲国产精品123| 91久久夜色精品国产网站| 亚洲激情在线观看| 亚洲精品在线观| 亚洲老板91色精品久久| 日韩亚洲不卡在线| 一区二区高清在线观看| 一区二区三区高清在线| 亚洲性视频网址| 午夜久久资源| 久久精品色图| 欧美成人自拍| 亚洲人成小说网站色在线| 日韩午夜激情av| 亚洲一区综合| 久久久久国内| 欧美激情女人20p| 欧美日韩一区视频| 国产精品丝袜白浆摸在线| 国产一区二区三区在线观看网站| 精品电影在线观看| 日韩网站免费观看| 亚洲综合丁香| 久久久久久亚洲精品杨幂换脸| 免费毛片一区二区三区久久久| 亚洲第一精品电影| 在线视频日本亚洲性| 先锋影院在线亚洲| 免费看av成人| 国产精品成人一区| 激情综合色综合久久| 亚洲精品一区二区在线观看| 亚洲一二三四区| 久久网站免费| 亚洲精品久久在线| 欧美亚洲三区| 欧美精品性视频| 国产小视频国产精品| 91久久久精品| 欧美在线视频一区二区三区| 欧美freesex8一10精品| 夜夜嗨网站十八久久| 久久久精品国产99久久精品芒果| 欧美国产亚洲视频| 国产日韩欧美在线播放| 最新高清无码专区| 久久成人羞羞网站| 亚洲激情六月丁香| 欧美一级二区| 欧美精品二区| 激情综合色综合久久综合| 亚洲一区二区三区四区视频| 久久综合给合久久狠狠狠97色69| 亚洲精品男同| 久久久欧美一区二区| 国产精品捆绑调教| 亚洲精品在线视频| 久久嫩草精品久久久精品| 亚洲免费福利视频| 久久综合九九| 国产欧美精品日韩精品| 99日韩精品| 欧美aa国产视频| 香蕉免费一区二区三区在线观看| 欧美激情中文不卡| 亚洲电影在线播放| 久久久精品国产免费观看同学| 日韩视频三区| 欧美国产精品劲爆| 精品福利电影| 欧美在线视频a| 正在播放欧美视频| 欧美日本在线观看| 最近看过的日韩成人| 久久久夜夜夜| 性久久久久久久久| 国产精品视频一二| 亚洲一区二区三| 亚洲精品视频在线| 欧美成人免费全部观看天天性色| 精品二区久久| 久久久久国产精品www| 亚洲欧美一区二区在线观看| 国产精品国产成人国产三级| 99精品国产在热久久| 亚洲第一精品久久忘忧草社区| 久久久久久自在自线| 国产一区二区三区高清播放| 欧美一区二区| 午夜精品久久| 国产日韩精品一区| 久久成人免费视频| 欧美伊久线香蕉线新在线| 国产免费一区二区三区香蕉精| 午夜激情综合网| 亚洲一区二区三区四区视频| 国产精品都在这里| 亚洲免费在线视频| 亚洲一区二区三区777| 国产精品视屏| 久久久久久久综合狠狠综合| 欧美亚洲日本网站| 激情文学一区| 欧美高清视频在线| 欧美激情一区二区三区在线| 亚洲美女尤物影院| 日韩一级片网址| 国产精品久久久久久久久久ktv| 亚洲一区日本| 性欧美大战久久久久久久免费观看| 国产亚洲精品激情久久| 久热这里只精品99re8久| 久久夜色精品| 日韩一区二区免费看| 亚洲视频在线播放| 国产日产亚洲精品系列| 久久久天天操| 欧美高清视频| 亚洲免费婷婷| 久久国产精品99精品国产| 一区二区三区中文在线观看 | 久久一区二区三区超碰国产精品| 永久久久久久| 亚洲激情婷婷| 国产模特精品视频久久久久| 久久久欧美精品| 欧美黑人一区二区三区| 亚洲一二三级电影| 欧美在线精品免播放器视频| 91久久精品一区二区三区| 亚洲伦理精品| 国产亚洲aⅴaaaaaa毛片| 欧美成人一区二区三区| 欧美日韩激情小视频| 西瓜成人精品人成网站| 久久久久久电影| 中文日韩在线视频| 欧美在线一区二区| 日韩视频一区二区三区| 午夜精品久久久久久久| 亚洲精品精选| 欧美一级欧美一级在线播放| 亚洲欧洲日本国产| 午夜精品成人在线| 99精品视频免费观看| 欧美在线视频在线播放完整版免费观看| 亚洲国产日本| 亚洲综合精品四区| 亚洲精品国精品久久99热一| 亚洲一区制服诱惑| 亚洲精品在线观看免费| 欧美在线观看一二区| 亚洲午夜久久久久久久久电影网| 久久久噜噜噜久久中文字免| 亚洲欧美激情一区二区| 六月天综合网| 久久久久国产精品一区二区| 欧美日韩大片一区二区三区| 久热国产精品视频| 国产精品视频免费观看| 亚洲日本中文字幕| 亚洲成色777777在线观看影院| 亚洲一区三区电影在线观看| 亚洲美女福利视频网站| 久久精品视频播放| 欧美在线一区二区三区| 欧美日韩精品在线观看| 亚洲第一主播视频| 黄色成人在线观看| 欧美一级大片在线免费观看| 亚洲一区久久久|