static_cast、dynamic_cast reinterpret_cast和const_ cast_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > static_cast、dynamic_cast reinterpret_cast和const_ cast

static_cast、dynamic_cast reinterpret_cast和const_ cast

 2011/12/21 9:09:58  fbxyfszc30000  http://fbxyfszc30000.iteye.com  我要评论(0)
  • 摘要:<spanstyle="color:rgb(50,62,50);font-family:simsun;font-size:14px;line-height:21px;background-color:rgb(224,145,47);"><spanstyle="line-height:18px;font-size:12px;"><spanstyle="line-height:18px;font-family:'Timesnewroman';"><
  • 标签:ERP

    <span style="color: rgb(50,62,50); font-family: simsun; font-size: 14px; line-height: 21px; background-color: rgb(224,145,47);"><span style="line-height: 18px; font-size: 12px;"><span style="line-height: 18px; font-family: 'Times new roman';"><span style="line-height: 24px; font-size: 16px;"><span style="line-height: 24px; font-family: 'Times new roman';">关于强制类型转换的问题,很多书都讨论过,写的最详细的是C++
之父的《C++ 的设计和演化》。最好的解决方法就是不要使用C风格的强制类型转换,而是使用标准C++的类型转换符:static_cast, dynamic_cast。标准C++中有四个类型转换符:static_cast、dynamic_cast、reinterpret_cast、和const_cast。下面对它们一一进行介绍。</span></span></span></span></span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">static_cast</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">用法:static_cast < type-id > ( expression_r_r )</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">该运算符把expression_r_r转换为type-id类型,但没有运行时类型检查来保证转换的安全性。它主要有如下几种用法:<br>
用于类层次结构中基类和子类之间指针或引用的转换。进行上行转换(把子类的指针或引用转换成基类表示)是安全的;进行下行转换(把基类指针或引用转换成子类表示)时,由于没有动态类型检查,所以是不安全的。<br>
用于基本数据类型之间的转换,如把int转换成char,把int转换成enum。这种转换的安全性也要开发人员来保证。<br>
把空指针转换成目标类型的空指针。<br>
把任何类型的表达式转换成void类型。<br>
注意:static_cast不能转换掉expression_r_r的const、volitale、或者__unaligned属性。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">dynamic_cast</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">用法:dynamic_cast < type-id > ( expression_r_r )</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">该运算符把expression_r_r转换成type-id类型的对象。Type-id必须是类的指针、类的引用或者void *;如果type-id是类指针类型,那么expression_r_r也必须是一个指针,如果type-id是一个引用,那么expression_r_r也必须是一个引用。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">dynamic_cast主要用于类层次间的上行转换和下行转换,还可以用于类之间的交叉转换。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">在类层次间进行上行转换时,dynamic_cast和static_cast的效果是一样的;在进行下行转换时,dynamic_cast具有类型检查的功能,比static_cast更安全。<br>
class B{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">public:</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">int m_iNum;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">virtual void foo();</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">};</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">class D:public B{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">public:</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">char *m_szName[100];</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">};</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';"><wbr></wbr></span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">void func(B *pb){</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">D *pd1 = static_cast<D *>(pb);</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">D *pd2 = dynamic_cast<D *>(pb);</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">}</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">在上面的代码段中,如果pb指向一个D类型的对象,pd1和pd2是一样的,并且对这两个指针执行D类型的任何操作都是安全的;但是,如果pb指向的是一个 B类型的对象,那么pd1将是一个指向该对象的指针,对它进行D类型的操作将是不安全的(如访问m_szName),而pd2将是一个空指针。另外要注意:B要有虚函数,否则会编译出错;static_cast则没有这个限制。这是由于运行时类型检查需要运行时类型信息,而这个信息存储在类的虚函数表(关于虚函数表的概念,详细可见<Inside
c++ object model>)中,只有定义了虚函数的类才有虚函数表,没有定义虚函数的类是没有虚函数表的。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">另外,dynamic_cast还支持交叉转换(cross cast)。如下代码所示。<br>
class A{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">public:</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">int m_iNum;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">virtual void f(){}</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">};</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';"><wbr></wbr></span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">class B:public A{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">};</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';"><wbr></wbr></span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">class D:public A{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">};</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';"><wbr></wbr></span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">void foo(){</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">B *pb = new B;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">pb->m_iNum = 100;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">D *pd1 = static_cast<D *>(pb); //copile error</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">D *pd2 = dynamic_cast<D *>(pb); //pd2 is NULL</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">delete pb;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">}</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">在函数foo中,使用static_cast进行转换是不被允许的,将在编译时出错;而使用 dynamic_cast的转换则是允许的,结果是空指针。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">reinpreter_cast</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">用法:reinpreter_cast<type-id> (expression_r_r)</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">type-id必须是一个指针、引用、算术类型、函数指针或者成员指针。它可以把一个指针转换成一个整数,也可以把一个整数转换成一个指针(先把一个指针转换成一个整数,在把该整数转换成原类型的指针,还可以得到原先的指针值)。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">该运算符的用法比较多。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">const_cast</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">用法:const_cast<type_id> (expression_r_r)</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">该运算符用来修改类型的const或volatile属性。除了const 或volatile修饰之外, type_id和expression_r_r的类型是一样的。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">常量指针被转化成非常量指针,并且仍然指向原来的对象;常量引用被转换成非常量引用,并且仍然指向原来的对象;常量对象被转换成非常量对象。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">Voiatile和const类试。举如下一例:<br>
class B{</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">public:</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">int m_iNum;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">}</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">void foo(){</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">const B b1;</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">b1.m_iNum = 100; //comile error</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">B b2 = const_cast<B>(b1);</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">b2. m_iNum = 200; //fine<br>
}</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">上面的代码编译时会报错,因为b1是一个常量对象,不能对它进行改变;使用const_cast把它转换成一个常量对象,就可以对它的数据成员任意改变。注意:b1和b2是两个不同的对象。</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';">最容易理解的解释:</span>

<span style="line-height: 24px; font-size: 16px; font-family: 'Times new roman';"><wbr><wbr>dynamic_cast: <wbr>通常在基类和派生类之间转换时使用;<br><wbr><wbr>const_cast: <wbr>主要针对const和volatile的转换.<wbr><wbr><wbr><br><wbr><wbr>static_cast: <wbr>一般的转换,如果你不知道该用哪个,就用这个。<wbr><wbr><wbr><br><wbr><wbr><wbr>reinterpret_cast: <wbr>用于进行没有任何关联之间的转换,比如一个字符指针转换为一个整形数。</wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></wbr></span>
 
发表评论
用户名: 匿名