|
|
Re: null in java
|
Posted: Aug 25, 2005 12:01 AM
|
|
> Does a null in Java stand for 0x0000? > > Is a NULL in Java compatible with the NULL in Sybase? > > Please help me out.
No they are not, even in native code NULL or '\0' is not equivalent to 0x0000.
If I'm not mistaken 0x0000 is simply hex for 0. If its in reference to an address, a null pointer won't necessarily reside in that location.
In any case java can't access a machines lowlevel routines so you really won't know if what you're asking holds.
In short, No its not.
|
|