What is the difference between casting and coercing?

c#, oop

Solution

Type Conversion:

The word conversion refers to either implicitly or explicitly changing a value from one data type to another, e.g. a 16-bit integer to a 32-bit integer.

The word coercion is used to denote an implicit conversion.

The word cast typically refers to an explicit type conversion (as opposed to an implicit conversion), regardless of whether this is a re-interpretation of a bit-pattern or a real conversion.

So, coercion is implicit, cast is explicit, and conversion is any of them.

Few examples (from the same source) :

Coercion (implicit):

double  d;
int     i;
if (d > i)      d = i;

Cast (explicit):

double da = 3.3;
double db = 3.3;
double dc = 3.4;
int result = (int)da + (int)db + (int)dc; //result == 9

Problem

I've seen both terms be used almost interchangeably in various online explanations, and most text books I've consulted are also not entirely clear about the distinction. Is there perhaps a clear and simple way of explaining the difference that you guys know of? Type conversion (also sometimes known as type cast) To use a value of one type in a context that expects another. Nonconverting type cast (sometimes known as type pun) A change that does not alter the underlying bits. Coercion Process by which a compiler automatically converts a value of one type into a value of another type when that second type is required by the surrounding context.

Original source