Open In App

Type Conversion in C++

Last Updated : 30 Dec, 2024
Comments
Improve
Suggest changes
Like Article
Like
Report
News Follow

Type conversion means converting one type of data to another compatible type such that it doesn’t lose its meaning. It is essential for managing different data types in C++.

Let’s take a look at an example:

C++
#include <iostream>
using namespace std;

int main() {
  
  	// Two variables of different type
	int i = 10;
    char c = 'A';
  
  	// printing c after manually converting it
  	cout << (int)c << endl;
  	
  	// Adding i and c,
  	int sum = i + c;
  
  	// Printing sum
  	cout << sum;
  	
    return 0;
}

Output
65
75

Explanation: The character c = (‘A’) is manually converted to its ASCII integer value using (int)c. The addition of i = 10 and c involves automatic type conversion, where the character c is automatically converted to its ASCII value (65) before the addition. The C++ Course covers the various methods of type conversion, helping you understand how to handle data types correctly.

In C++, there are two types of type conversion:

Implicit Type Conversion

Implicit type conversion (also known as coercion) is the conversion of one type of data to another type automatically by the compiler when needed. It happens automatically when:

  • Operations are performed on values of different data types.
  • If you pass an argument to a function that expects a different data type.
  • Assigning a value of one data type to a variable of another data type.

Example:

C++
#include <iostream>
using namespace std;

int main() {
  
    int i = 10;
    char c = 'a';

    // c implicitly converted to int. ASCII
    // value of 'a' is 97
    i = i + c;

    // x is implicitly converted to float
    float f = i + 1.0;

    cout << "i = " << i << endl
         << "c = " << c << endl
         << "f = " << f;

    return 0;
}

Output
i = 107
c = a
f = 108

It is possible for implicit conversions to lose information, signs can be lost (when signed is implicitly converted to unsigned), and overflow can occur (when long long is implicitly converted to float).

Cases of Implicit Type Conversion

1. For Numeric Type

All the data types of the variables are upgraded to the data type of the variable with largest data type. For numeric type,

bool -> char -> short int -> int -> unsigned int -> long -> unsigned -> long long -> float -> double -> long double

2. Pointer Conversions

Pointers to derived classes can be converted to pointers to base classes automatically.

3. Boolean Conversion

Any scalar type (integer, floating-point, pointer) is implicitly converted to bool in a context that requires a Boolean value (e.g., if, while, for conditions).

Explicit Type Conversion

Explicit type conversion, also called type casting is the conversion of one type of data to another type manually by a programmer. Here the user can typecast the result to make it of a particular data type. In C++, it can be done by two ways:

1. C Style Typecasting

This method is inherited by C++ from C. The conversion is done by explicitly defining the required type in front of the expression in parenthesis. This can be also known as forceful casting.

(type) expression;

where type indicates the data type to which the final result is converted.

Example:

C++
#include <iostream>
using namespace std;

int main() {
    double x = 1.2;

    // Explicit conversion from double to int
    int sum = (int)x + 1;

    cout << sum;

    return 0;
}

Output
2

This typecasting is considered old and unsafe because it performs no checks whatsoever to determine whether the casting is valid or not.

C++ Style Typecasting

C++ introduced its own typecasting method using cast operators. Cast operator is an unary operator which forces one data type to be converted into another data type. C++ supports four types of casting:

  1. Static Cast: Used for standard compile time type conversions.
  2. Dynamic Cast: Used for runtime type conversion in polymorphism and inheritance.
  3. Const Cast: Removes or adds const or volatile qualifiers.
  4. Reinterpret Cast: Used for low-level reinterpretation of bits (e.g., converting pointers).

Example:

C++
#include <iostream>
using namespace std;

int main() {
    double x = 1.2;

    // Explicit conversion from double to int
    int sum = static_cast<int>(x + 1);

    cout << sum;
    return 0;
}

Output
2

Risks of Type Conversion

Type conversion provides useful functionality to the language but also introduces certain risks:

  1. Data loss that occurs when converting from a larger type to a smaller type (e.g., int to char).
  2. Undefined behavior that happens when casting pointers between unrelated types and dereferencing them.
  3. Violation of const correctness when removing const with const_cast and modifying the variable leads to undefined behavior.
  4. Memory misalignment casting pointers to types with stricter alignment can cause crashes.


Next Article
Article Tags :
Practice Tags :

Similar Reads

three90RightbarBannerImg