You can find the complete source code of the netive methods here.
Hope this will work for you.
EDIT :
These are native methods, because it has to interact with machine, here machine dependent code is written in C language, which is not coming with the source package or in rt.jar of the lib location of Java Runtime Environment.
One more reason for being native is of may be the performence reasons, due to C level programming performence may be improved, hence they may have written the native code in C language.
FURTHER ADDITION:
The methods are native because they concern native data. The hashCode method returns an integer value dependent on the internal representation of a pointer to an object on the heap. The getClass method must access the internal vtbl (virtual function table) that represents the compiled program's class hierarchy. Neither of these is possible with core Java.
hashCodecould be implemented withSystem.identityHashCode. – zch Dec 18 '12 at 22:44