On Thu, Mar 19, 2009 at 3:50 AM, zeb_zxc <[email protected]> wrote: > It is very difficult to understand the casting (data type conversion), can any > body help me in understanding the casting?
To understand "casting" you should first know how the compiler creates the assembly code for dealing with that specific type... Each type will have different generated assembly code. When you cast an object, you're the compiler you want to access that object as if it were another object, so the compiler will generate the proper assembly code for accessing it. Did that help? Herzog.
