首页 > 其他 > 详细

dynamic_cast & static_cast

时间:2014-02-22 22:29:19      阅读:484      评论:0      收藏:0      [点我收藏+]

?代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
#include <iostream> 
#include <iterator>
#include <vector>
#include <algorithm>
#include <utility> 
#include <string> 
#include <string.h>
#include <stdio.h>
 
//不久就在工作中碰到了一个活生生的例子
/*
#if 0
    //不能一步到位,error: expected unqualified-id before ‘(‘ token
    //可能表达式过于复杂了,拆之
    fMYRTSPClient->(dynamic_cast<H264DecodeSink*>(fMYRTSPClient->fVideosink))->AttachInput(
        this,(SIG_CAP_LIVE555RTP)&CLive555Ipc::OnLive555RtpInput);
 
    #else  
    //拆开赋值,我们的H264DecodeSink有继承自live555 FileSink
    //live555 FileSink无AttachInput(),所以要强制转换FileSink-->H264DecodeSink
     
    fVideosink = fMYRTSPClient->fVideosink;
    fH264DecodeSink = dynamic_cast<H264DecodeSink*>(fVideosink);
    fH264DecodeSink->AttachInput(this,(SIG_CAP_LIVE555RTP)&CLive555Ipc::OnLive555RtpInput);
    #endif
 
*/
 
 
//上行转换(up-casting)与下行转换(down-casting)
 
using namespace std;
 
class CDummy
{
public:
    int i;
    int m_chn;
    int m_type;
};
 
class CDummy_dup
{
public:
    CDummy_dup(){};
    virtual ~CDummy_dup(){};
     
    void Init(int chn,int type)
    {
        chn = 88;
        type = 99;
    };
     
    virtual int Connect()
    {
        return 0;
    }
 
public:
    int m_chn;
    int m_type;
};
 
class CBase
{
public:
    CBase();
    virtual ~CBase();
 
    void Init(int chn,int type);
    virtual int Connect();
     
public:
    int m_chn;
    int m_type;
     
};
 
CBase::CBase()
#if 1
:m_chn(0x100)
,m_type(0x300)
#endif
{
    printf("line %d, CBase::CBase, ch(%d), type(%d)\n",
        __LINE__, m_chn, m_type);
 
}
CBase::~CBase()
{
 
}
 
void CBase::Init(int chn,int type)
{
    m_chn = chn;
    m_type = type;
}
 
int CBase::Connect()
{
    printf("line %d, CBase::Connect, ch(%d), type(%d)\n",
        __LINE__, m_chn, m_type);
}
 
 
class CDerived:public CBase
{
public:
    CDerived();
    virtual ~CDerived();
public:
    int Connect();
 
public:
    int GetId() const {return fid;};
     
private:
public:
    int fid;
};
 
CDerived::CDerived()
{
    printf("line %d, CDerived::CDerived, ch(%d), type(%d)\n",
        __LINE__, m_chn, m_type);
     
    fid = 0x1000 + m_chn + m_type;
}
CDerived::~CDerived()
{
 
}
 
int CDerived::Connect()
{
    printf("line %d, CDerived::Connect, ch(%d), type(%d)\n",
        __LINE__, m_chn, m_type);
}
 
class CExample
{
public:
    CExample();
    //virtual ~CExample();
 
public:
    void InitDown(CBase* base);
    void TestDown();
 
     
    void InitUp(CDerived* derived);
    void TestUp();
public:
    CBase*    m_pBase;
    CDerived* m_pDerived;
 
};
 
CExample::CExample()
{}
 
 
//DOWN
void CExample::InitDown(CBase* base)
{
    m_pBase = base;
}
 
 
void CExample::TestDown()
{
#if 1
    printf("line %d, CExample::TestDown dynamic_cast, ch(%d), type(%d), fid(0x%04x), 000\n",
        __LINE__,
        (dynamic_cast<CDerived*>(m_pBase))->m_chn,
        (dynamic_cast<CDerived*>(m_pBase))->m_type,
        (dynamic_cast<CDerived*>(m_pBase))->GetId());
#endif
 
 
#if 1
    printf("line %d, CExample::TestDown static_cast,  ch(%d), type(%d), fid(0x%04x), 111\n",
        __LINE__,
        (static_cast<CDerived*>(m_pBase))->m_chn,
        (static_cast<CDerived*>(m_pBase))->m_type,
        (static_cast<CDerived*>(m_pBase))->GetId());
#endif
 
#if 0   //can not make
    //错误: 从类型‘CBase*’到类型‘CDummy*’中的 static_cast 无效
 
    printf("line %d, CExample::TestDown static_cast err, ch(%d), type(%d), fid(0x%04x), 222\n",
        __LINE__,
        (static_cast<CDummy*>(m_pBase))->m_chn,
        (static_cast<CDummy*>(m_pBase))->m_type,
        (static_cast<CDummy*>(m_pBase))->GetId());
#endif
 
#if 0   //can make,运行时"段错误 (核心已转储)"
        //实际上CDummy至少要有一个virtual func
 
    printf("line %d, CExample::TestDown dynamic_cast err, ch(%d), type(%d), 333\n",
            __LINE__,
            (dynamic_cast<CDummy*>(m_pBase))->m_chn,
            (dynamic_cast<CDummy*>(m_pBase))->m_type);
#endif
 
#if 0   //can make,运行时"段错误 (核心已转储)"
 
    printf("line %d, CExample::TestDown dynamic_cast err, ch(%d), type(%d), 444\n",
            __LINE__,
            (dynamic_cast<CDummy_dup*>(m_pBase))->m_chn,
            (dynamic_cast<CDummy_dup*>(m_pBase))->m_type);
#endif
 
    //m_pBase说,您把我下放了,我只能局限行事了。
    //以下call CDerived::Connect()
 
    (static_cast<CDerived*>(m_pBase))->Connect();
    (dynamic_cast<CDerived*>(m_pBase))->Connect();
 
    //call GetId,表明m_pBase确实下放了。
    (static_cast<CDerived*>(m_pBase))->GetId();
     
}
 
 
//UP
void CExample::InitUp(CDerived* derived)
{
    m_pDerived = derived;
}
 
 
void CExample::TestUp()
{
#if 1
    printf("line %d, CExample::TestUp dynamic_cast, ch(%d), type(%d), fid(0x%04x), 000\n",
        __LINE__,
        (dynamic_cast<CBase*>(m_pDerived))->m_chn,
        (dynamic_cast<CBase*>(m_pDerived))->m_type,
        0);
        //(static_cast<CBase*>(m_pDerived))->GetId());
 
#endif
 
 
#if 1
    printf("line %d, CExample::TestUp static_cast,  ch(%d), type(%d), fid(0x%04x), 111\n",
        __LINE__,
        (static_cast<CBase*>(m_pDerived))->m_chn,
        (static_cast<CBase*>(m_pDerived))->m_type,
        0);
        //(static_cast<CBase*>(m_pDerived))->GetId());
#endif
 
#if 0   //can not make
        //错误: 从类型‘CDerived*’到类型‘CDummy*’中的 static_cast 无效
 
    printf("line %d, CExample::TestUp static_cast err, ch(%d), type(%d), fid(0x%04x), 222\n",
        __LINE__,
        (static_cast<CDummy*>(m_pDerived))->m_chn,
        (static_cast<CDummy*>(m_pDerived))->m_type,
        0);
        //(static_cast<CDummy*>(m_pDerived))->GetId());
#endif
 
#if 0   //can make,运行时"段错误 (核心已转储)"
        //实际上CDummy至少要有一个virtual func
 
        printf("line %d, CExample::TestUp dynamic_cast err, ch(%d), type(%d), 333\n",
            __LINE__,
            (dynamic_cast<CDummy*>(m_pDerived))->m_chn,
            (dynamic_cast<CDummy*>(m_pDerived))->m_type,
            0);
#endif
 
#if 0   //can make,运行时"段错误 (核心已转储)"
        printf("line %d, CExample::TestUp dynamic_cast err, ch(%d), type(%d), 444\n",
            __LINE__,
            (dynamic_cast<CDummy_dup*>(m_pDerived))->m_chn,
            (dynamic_cast<CDummy_dup*>(m_pDerived))->m_type);
#endif
 
    //m_pDerived说,您把我提升了,我就不客气按职位来行事了。
    //以下call CDerived::Connect()
    (static_cast<CBase*>(m_pDerived))->Connect();
    (dynamic_cast<CBase*>(m_pDerived))->Connect();
 
    //错误: ‘class CBase’没有名为‘GetId’的成员
    //此错误表明m_pDerived确实被提升了。
    //(static_cast<CBase*>(m_pDerived))->GetId();
    //(dynamic_cast<CBase*>(m_pDerived))->GetId();
}
 
/*
    从Test()可以看出,
    static_cast 编译期
    dynamic_cast    运行期
    至于up or down不是最关键的,关键的是pDesire和pConverted的关系
    是否合理。这个合理性则需要自己来保证了。
*/
 
int main (int argc,char *argv[])
    CExample *pExmp = new CExample();
 
    CBase *pBase = new CDerived();
    pBase->Init(1,3);
     
    printf("\nline %d, pBase->ch(%d), pBase->type(%d), 000\n\n",
        __LINE__, pBase->m_chn, pBase->m_type);
     
    pExmp->InitDown(pBase);
     
    pExmp->TestDown();
    printf("\nline %d, pBase->ch(%d), pBase->type(%d), 111\n\n",
        __LINE__, pBase->m_chn, pBase->m_type);
 
     
    printf("\nline %d, ######\n\n", __LINE__);
     
    CDerived *pDerived = new CDerived();
 
    pDerived->m_chn = 2;
    pDerived->m_type = 6;
    pDerived->fid= 0x1000 + pDerived->m_chn + pDerived->m_type;
 
    pExmp->InitUp(pDerived);
    pExmp->TestUp();
 
    return 0;
}







dynamic_cast & static_cast

原文:http://www.cnblogs.com/freezlz/p/3560772.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!