Possible Duplicate:
Implicit VS Explicit Conversion
What is the difference between "implicit conversion" and "explicit conversion"? Is the difference different in Java and C++?
What is the difference between "implicit conversion" and "explicit conversion"? Is the difference different in Java and C++? |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
An explicit conversion is where you use some syntax to tell the program to do a conversion. For example (in Java):
An implicit conversion is where the conversion happens without any syntax. For example (in Java):
It should be noted that (in Java) conversions involving primitive types generally involve some change of representation, and that may result in loss of precision or loss of information. By contrast, conversions that involve reference types (only) don't change the fundamental representation.
I don't imagine so. Obviously the conversions available will be different, but the distinction between "implicit" and "explicit" will be the same. (Note: I'm not an expert on the C++ language ... but these words have a natural meaning in English and I can't imagine the C++ specifications use them in a contradictory sense.) |
|||||
|
|
For example:
There are actually other types of implicit castings - between primitives, using default constructors. You will have to be more specific with your question. implicit with default constructor:
|
|||
|
|
|
Casting is an explicit type conversion, specified in the code and subject to very few rules at compile time. Casts can be unsafe; they can fail at run-time or lose information. Also I would suggest reading about C++ implicit coversion: http://blogs.msdn.com/b/oldnewthing/archive/2006/05/24/605974.aspx |
|||
|
|