Explanation of four forced conversion instances (c ++) and four forced conversion instances

Source: Internet
Author: User

Explanation of four forced conversion instances (c ++) and four forced conversion instances

Static_cast is closest to C-style conversion, but the compiler reports an error during unrelated class pointer conversion, improving security;

Double d = 3.14159265;

Int I = static_cast (d );

Dynamic_cast requires that the conversion type must be pointer or reference, and the base class must be polymorphism in the downstream conversion. If the downstream conversion is unsafe, dynamic_cast returns a null pointer, dynamic_cast always thinks that the conversion between void * is safe;

Reinterpret_cast can convert irrelevant class pointers, or even directly convert integer values to pointers. This type of conversion is underlying and has strong platform dependence and poor portability;

Class {};

Class B {};

A * a = new;

B * B = reinterpret_cast

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.