C ++ type conversion Operator

Source: Internet
Author: User

1. static_cast

Float X;

Cout <static_cast <int> (X );

F (static_cast <string> ("hello ");

 

2. dynamic_cast

Down the transformation of polymorphism types

Class car;

Class Cabriolet: Public Car {...};

Class limosine: Public Car {...};

Void F (car * CP ){

Cabriolet * P = dynamic_cast <Cabriolet *> (CP );

If (P = NULL ){

.........

}

}

If the type conversion fails, dynamic_cast throws a bad_cast exception.

Note: When Using polymorphism technology, avoid writing "program behavior depends on the specific type ".

 

3. const_cast

Constant of the set or location type, which can also be modified by volatile

 

4. reinterpret_cast

Using this transformation usually results in portability.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.