Marshalling and casting. Are them related? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T02:26:48Z http://stackoverflow.com/feeds/question/845911 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/845911/marshalling-and-casting-are-them-related 0 Marshalling and casting. Are them related? Luixv 2009-05-10T19:17:50Z 2009-05-10T19:27:03Z <p>Last week a young student ask me if marshalling is the same as casting. My answer was definetly no. Marshalling is seralization, the way to transform a memory representation of an objet into bytes in order to be transmitted to a network whereas casting is related to type convertion / coercion.</p> <p>Later on, rethinking the question I was thought that marshalling can be seen as a special case of casting. For example the transformation of the memory representation is in xml then one can say that you are "casting" to the type defined by the corresponding xsd grammar of that xml file.</p> <p>What do you think about this?</p> http://stackoverflow.com/questions/845911/marshalling-and-casting-are-them-related/845924#845924 0 Answer by Tollo for Marshalling and casting. Are them related? Tollo 2009-05-10T19:21:42Z 2009-05-10T19:27:03Z <p>Marshalling is generally about a technology boundary (e.g. going across a network or from one memory type to another as in the case of managed/unmanaged) whereas casting is generally within the same technology boundary therefore I think they are definitely different things.</p> <p>It would be exceptionally confusing if we used the same term for both approaches meaning we would need to define them differently as they have different behaviours.</p> http://stackoverflow.com/questions/845911/marshalling-and-casting-are-them-related/845934#845934 2 Answer by Kekoa for Marshalling and casting. Are them related? Kekoa 2009-05-10T19:25:45Z 2009-05-10T19:25:45Z <p>Casting doesn't modify the data type. That is a major distinction. When you marshal something, you are transforming the data into something else.</p> <p>A simple cast only changes how you are interpreting the object, not what the object is internally.</p> <p>I agree that the distinction should be clear else unfamiliar people may be confused.</p> http://stackoverflow.com/questions/845911/marshalling-and-casting-are-them-related/845935#845935 -1 Answer by ChrisW for Marshalling and casting. Are them related? ChrisW 2009-05-10T19:26:11Z 2009-05-10T19:26:11Z <p>They're both a "type conversion", but, they are different kinds of type conversion: casting is usually between related object types (e.g. a downcast from a superclass to a subclass), whereas a marshalling might be for example from an object graph to plain-text representation.</p>