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

posts - 297,  comments - 15,  trackbacks - 0
Converting an expression of a given type into another type is known as type-casting. We have already seen some ways to type cast:

Implicit conversion

Implicit conversions do not require any operator. They are automatically performed when a value is copied to a compatible type. For example:

1
2
3
short a=2000;
            int b;
            b=a;


Here, the value of a has been promoted from short to int and we have not had to specify any type-casting operator. This is known as a standard conversion. Standard conversions affect fundamental data types, and allow conversions such as the conversions between numerical types (short to int, int to float, double to int...), to or from bool, and some pointer conversions. Some of these conversions may imply a loss of precision, which the compiler can signal with a warning. This can be avoided with an explicit conversion.

Implicit conversions also include constructor or operator conversions, which affect classes that include specific constructors or operator functions to perform conversions. For example:

1
2
3
4
5
class A {};
            class B { public: B (A a) {} };
            A a;
            B b=a;


Here, a implicit conversion happened between objects of class A and class B, because B has a constructor that takes an object of class A as parameter. Therefore implicit conversions from A to B are allowed.

Explicit conversion

C++ is a strong-typed language. Many conversions, specially those that imply a different interpretation of the value, require an explicit conversion. We have already seen two notations for explicit type conversion: functional and c-like casting:

1
2
3
4
short a=2000;
            int b;
            b = (int) a;    // c-like cast notation
            b = int (a);    // functional notation 


The functionality of these explicit conversion operators is enough for most needs with fundamental data types. However, these operators can be applied indiscriminately on classes and pointers to classes, which can lead to code that while being syntactically correct can cause runtime errors. For example, the following code is syntactically correct:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// class type-casting
            #include <iostream>
            using namespace std;
            class CDummy {
            float i,j;
            };
            class CAddition {
            int x,y;
            public:
            CAddition (int a, int b) { x=a; y=b; }
            int result() { return x+y;}
            };
            int main () {
            CDummy d;
            CAddition * padd;
            padd = (CAddition*) &d;
            cout << padd->result();
            return 0;
            }
 


The program declares a pointer to CAddition, but then it assigns to it a reference to an object of another incompatible type using explicit type-casting:

 
padd = (CAddition*) &d;


Traditional explicit type-casting allows to convert any pointer into any other pointer type, independently of the types they point to. The subsequent call to member result will produce either a run-time error or a unexpected result.

In order to control these types of conversions between classes, we have four specific casting operators: dynamic_cast, reinterpret_cast, static_cast and const_cast. Their format is to follow the new type enclosed between angle-brackets (<>) and immediately after, the expression to be converted between parentheses.


dynamic_cast <new_type> (expression)
reinterpret_cast <new_type> (expression)
static_cast <new_type> (expression)
const_cast <new_type> (expression)


The traditional type-casting equivalents to these expressions would be:


(new_type) expression
new_type (expression)


but each one with its own special characteristics:

dynamic_cast


dynamic_cast can be used only with pointers and references to objects. Its purpose is to ensure that the result of the type conversion is a valid complete object of the requested class.

Therefore, dynamic_cast is always successful when we cast a class to one of its base classes:

1
2
3
4
5
6
7
8
class CBase { };
            class CDerived: public CBase { };
            CBase b; CBase* pb;
            CDerived d; CDerived* pd;
            pb = dynamic_cast<CBase*>(&d);     // ok: derived-to-base
            pd = dynamic_cast<CDerived*>(&b);  // wrong: base-to-derived 


The second conversion in this piece of code would produce a compilation error since base-to-derived conversions are not allowed with dynamic_cast unless the base class is polymorphic.

When a class is polymorphic, dynamic_cast performs a special checking during runtime to ensure that the expression yields a valid complete object of the requested class:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// dynamic_cast
            #include <iostream>
            #include <exception>
            using namespace std;
            class CBase { virtual void dummy() {} };
            class CDerived: public CBase { int a; };
            int main () {
            try {
            CBase * pba = new CDerived;
            CBase * pbb = new CBase;
            CDerived * pd;
            pd = dynamic_cast<CDerived*>(pba);
            if (pd==0) cout << "Null pointer on first type-cast" << endl;
            pd = dynamic_cast<CDerived*>(pbb);
            if (pd==0) cout << "Null pointer on second type-cast" << endl;
            } catch (exception& e) {cout << "Exception: " << e.what();}
            return 0;
            }
Null pointer on second type-cast


Compatibility note: dynamic_cast requires the Run-Time Type Information (RTTI) to keep track of dynamic types. Some compilers support this feature as an option which is disabled by default. This must be enabled for runtime type checking using dynamic_cast to work properly.


The code tries to perform two dynamic casts from pointer objects of type CBase* (pba and pbb) to a pointer object of type CDerived*, but only the first one is successful. Notice their respective initializations:

1
2
CBase * pba = new CDerived;
            CBase * pbb = new CBase;


Even though both are pointers of type CBase*, pba points to an object of type CDerived, while pbb points to an object of type CBase. Thus, when their respective type-castings are performed using dynamic_cast, pba is pointing to a full object of class CDerived, whereas pbb is pointing to an object of class CBase, which is an incomplete object of class CDerived.

When dynamic_cast cannot cast a pointer because it is not a complete object of the required class -as in the second conversion in the previous example- it returns a null pointer to indicate the failure. If dynamic_cast is used to convert to a reference type and the conversion is not possible, an exception of type bad_cast is thrown instead.

dynamic_cast can also cast null pointers even between pointers to unrelated classes, and can also cast pointers of any type to void pointers (void*).

static_cast

static_cast can perform conversions between pointers to related classes, not only from the derived class to its base, but also from a base class to its derived. This ensures that at least the classes are compatible if the proper object is converted, but no safety check is performed during runtime to check if the object being converted is in fact a full object of the destination type. Therefore, it is up to the programmer to ensure that the conversion is safe. On the other side, the overhead of the type-safety checks of dynamic_cast is avoided.

1
2
3
4
class CBase {};
            class CDerived: public CBase {};
            CBase * a = new CBase;
            CDerived * b = static_cast<CDerived*>(a);


This would be valid, although b would point to an incomplete object of the class and could lead to runtime errors if dereferenced.

static_cast can also be used to perform any other non-pointer conversion that could also be performed implicitly, like for example standard conversion between fundamental types:

1
2
double d=3.14159265;
            int i = static_cast<int>(d); 


Or any conversion between classes with explicit constructors or operator functions as described in "implicit conversions" above.

reinterpret_cast

reinterpret_cast converts any pointer type to any other pointer type, even of unrelated classes. The operation result is a simple binary copy of the value from one pointer to the other. All pointer conversions are allowed: neither the content pointed nor the pointer type itself is checked.

It can also cast pointers to or from integer types. The format in which this integer value represents a pointer is platform-specific. The only guarantee is that a pointer cast to an integer type large enough to fully contain it, is granted to be able to be cast back to a valid pointer.

The conversions that can be performed by reinterpret_cast but not by static_cast have no specific uses in C++ are low-level operations, whose interpretation results in code which is generally system-specific, and thus non-portable. For example:

1
2
3
4
class A {};
            class B {};
            A * a = new A;
            B * b = reinterpret_cast<B*>(a);


This is valid C++ code, although it does not make much sense, since now we have a pointer that points to an object of an incompatible class, and thus dereferencing it is unsafe.

const_cast

This type of casting manipulates the constness of an object, either to be set or to be removed. For example, in order to pass a const argument to a function that expects a non-constant parameter:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// const_cast
            #include <iostream>
            using namespace std;
            void print (char * str)
            {
            cout << str << endl;
            }
            int main () {
            const char * c = "sample text";
            print ( const_cast<char *> (c) );
            return 0;
            }
sample text


typeid

typeid allows to check the type of an expression:


typeid (expression)


This operator returns a reference to a constant object of type type_info that is defined in the standard header file <typeinfo>. This returned value can be compared with another one using operators == and != or can serve to obtain a null-terminated character sequence representing the data type or class name by using its name() member.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// typeid
            #include <iostream>
            #include <typeinfo>
            using namespace std;
            int main () {
            int * a,b;
            a=0; b=0;
            if (typeid(a) != typeid(b))
            {
            cout << "a and b are of different types:\n";
            cout << "a is: " << typeid(a).name() << '\n';
            cout << "b is: " << typeid(b).name() << '\n';
            }
            return 0;
            }
a and b are of different types:
            a is: int *
            b is: int  


When typeid is applied to classes typeid uses the RTTI to keep track of the type of dynamic objects. When typeid is applied to an expression whose type is a polymorphic class, the result is the type of the most derived complete object:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// typeid, polymorphic class
            #include <iostream>
            #include <typeinfo>
            #include <exception>
            using namespace std;
            class CBase { virtual void f(){} };
            class CDerived : public CBase {};
            int main () {
            try {
            CBase* a = new CBase;
            CBase* b = new CDerived;
            cout << "a is: " << typeid(a).name() << '\n';
            cout << "b is: " << typeid(b).name() << '\n';
            cout << "*a is: " << typeid(*a).name() << '\n';
            cout << "*b is: " << typeid(*b).name() << '\n';
            } catch (exception& e) { cout << "Exception: " << e.what() << endl; }
            return 0;
            }
a is: class CBase *
            b is: class CBase *
            *a is: class CBase
            *b is: class CDerived


Notice how the type that typeid considers for pointers is the pointer type itself (both a and b are of type class CBase *). However, when typeid is applied to objects (like *a and *b) typeid yields their dynamic type (i.e. the type of their most derived complete object).

If the type typeid evaluates is a pointer preceded by the dereference operator (*), and this pointer has a null value, typeid throws a bad_typeid exception.

from:
http://www.cplusplus.com/doc/tutorial/typecasting/
posted on 2010-05-02 10:52 chatler 閱讀(555) 評(píng)論(0)  編輯 收藏 引用 所屬分類: C++_BASIS
<2010年5月>
2526272829301
2345678
9101112131415
16171819202122
23242526272829
303112345

常用鏈接

留言簿(10)

隨筆分類(307)

隨筆檔案(297)

algorithm

Books_Free_Online

C++

database

Linux

Linux shell

linux socket

misce

  • cloudward
  • 感覺這個(gè)博客還是不錯(cuò),雖然做的東西和我不大相關(guān),覺得看看還是有好處的

network

OSS

  • Google Android
  • Android is a software stack for mobile devices that includes an operating system, middleware and key applications. This early look at the Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.
  • os161 file list

overall

搜索

  •  

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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一区二区| 亚洲第一色中文字幕| 国产精品久久久久久久浪潮网站| 久久国产夜色精品鲁鲁99| 日韩亚洲欧美成人| 欧美激情1区2区3区| 久久成人18免费观看| 亚洲一区成人| 99精品国产在热久久婷婷| 伊人久久综合97精品| 国产午夜精品久久久| 欧美视频一区二区| 欧美精品v日韩精品v韩国精品v| 欧美一区不卡| 亚洲欧美在线视频观看| 一级日韩一区在线观看| 亚洲片在线资源| 女人香蕉久久**毛片精品| 欧美中文字幕在线观看| 午夜精品www| 亚洲色诱最新| 在线视频欧美一区| 亚洲精品视频在线看| 亚洲国产99| 亚洲电影天堂av| 一区二区视频免费完整版观看| 国产手机视频一区二区| 国产精品伊人日日| 国产精品影片在线观看| 国产精品女主播| 国产精品久久久久久久7电影 | 亚洲精品视频免费在线观看| 欧美高清在线精品一区| 免费亚洲一区二区| 牛牛国产精品| 欧美激情精品久久久久| 欧美电影免费观看高清完整版| 免费成人av资源网| 欧美二区在线| 亚洲欧洲在线免费| 日韩一级免费| 亚洲一区精品在线| 久久xxxx精品视频| 久久久亚洲影院你懂的| 老色批av在线精品| 欧美国产成人精品| 欧美午夜精彩| 国产午夜精品在线| 在线看国产一区| 亚洲人午夜精品免费| 一区二区日韩免费看| 午夜精彩视频在线观看不卡 | 男女精品网站| 欧美日韩国产大片| 国产精品久久77777| 国产麻豆精品久久一二三| 国产专区精品视频| 亚洲国产精品成人综合色在线婷婷| 亚洲国产精品一区二区第一页 | 久久中文字幕一区| 亚洲国产成人精品视频| 99伊人成综合| 久久国产高清| 欧美精品久久99| 国产精品色婷婷久久58| 尤物99国产成人精品视频| 亚洲国产日韩一级| 亚洲欧美激情诱惑| 欧美+亚洲+精品+三区| 99re视频这里只有精品| 校园激情久久| 欧美二区在线| 国产欧美精品在线观看| 亚洲经典在线| 香蕉久久夜色| 亚洲高清不卡一区| 亚洲欧美综合国产精品一区| 久久久蜜臀国产一区二区| 欧美精品日日鲁夜夜添| 国产亚洲成av人片在线观看桃| 91久久精品国产91久久性色tv | 亚洲欧洲一区二区天堂久久| 亚洲一区免费观看| 欧美va亚洲va国产综合| 国产精品一区视频| 亚洲精选中文字幕| 久久久综合激的五月天| 一本大道久久精品懂色aⅴ | 狂野欧美一区| 中文日韩电影网站| 欧美福利专区| 精品福利免费观看| 欧美亚洲日本网站| 亚洲精品久久久久中文字幕欢迎你 | 久久久91精品| 国产精品久久波多野结衣| 亚洲国产毛片完整版| 欧美伊人久久| 99国产欧美久久久精品| 狼人天天伊人久久| 国产亚洲成av人片在线观看桃| 一区二区三区成人精品| 欧美1区2区| 欧美在线电影| 国产精品一区免费视频| 亚洲午夜电影| 亚洲精品美女在线| 免费久久99精品国产自| 激情综合色综合久久| 欧美在线观看视频一区二区三区| 日韩视频一区二区三区在线播放免费观看| 久久精品中文字幕一区| 国产亚洲成年网址在线观看| 亚洲欧美日韩在线| 一本色道久久| 欧美日韩国产成人在线| 亚洲毛片播放| 亚洲激情成人在线| 欧美电影在线播放| 亚洲三级国产| 亚洲国产毛片完整版| 美女在线一区二区| 在线免费一区三区| 女生裸体视频一区二区三区| 久久国内精品视频| 激情另类综合| 欧美va亚洲va日韩∨a综合色| 久久aⅴ国产欧美74aaa| 国内精品久久久久国产盗摄免费观看完整版 | 国产精品99久久久久久宅男 | 国产午夜精品一区理论片飘花| 亚洲欧美一区二区精品久久久| 99在线精品观看| 欧美亚州一区二区三区 | 免费在线观看一区二区| 久久人人97超碰人人澡爱香蕉| 激情久久一区| 欧美黄色日本| 欧美精品 日韩| 亚洲四色影视在线观看| 中日韩美女免费视频网址在线观看| 国产精品国产三级国产普通话99 | 久久青青草综合| 久久伊人亚洲| 亚洲精品久久在线| 99精品福利视频| 国产精品乱人伦中文| 久久成人在线| 老司机精品导航| 一本色道久久综合一区| 亚洲网站在线看| 国精产品99永久一区一区| 欧美 日韩 国产在线| 欧美久久一区| 欧美中文在线字幕| 久久性色av| 一本综合久久| 香蕉乱码成人久久天堂爱免费| 国产一区二区三区av电影| 欧美韩日一区二区| 欧美日韩在线播放三区四区| 久久成人久久爱| 免费一级欧美在线大片| 亚洲永久视频| 久久久久久有精品国产| 99视频+国产日韩欧美| 亚洲欧美伊人| 亚洲欧洲一区二区天堂久久 | 激情综合色综合久久| 亚洲国产精品久久久久秋霞不卡| 欧美色视频在线| 久久综合九色99| 欧美日韩大片| 久久婷婷久久| 欧美三级电影一区| 浪潮色综合久久天堂| 欧美午夜精品久久久| 毛片精品免费在线观看| 欧美婷婷在线| 欧美多人爱爱视频网站| 国产精品日韩精品欧美在线| 欧美高清在线视频观看不卡| 国产精品久久久久久久久久尿| 欧美成年人网站| 国产乱码精品一区二区三区忘忧草| 欧美激情精品久久久久久变态| 国产精品一区=区| 亚洲人成欧美中文字幕| 国产一区二区三区日韩欧美| 一本色道88久久加勒比精品| 亚洲国产成人久久综合一区| 亚洲一区视频| 亚洲视频在线视频| 免费在线成人| 久久夜色精品国产欧美乱极品| 国产精品sss| 亚洲国产精彩中文乱码av在线播放 | 亚洲欧美日韩在线|