Native methods in Java -


i have spent time learning java native methods , implemented in platform dependent code(mostly c).

but can find native implementations of java? eg : sleep(long millis) method of thread class native. implementation code???

the native code implemented within jvm (java virtual machine). java developer isn't supposed worry implementation relate inner working of virtual machine. however, can write own native methods using jni or see how implemented specific jvm.


Comments

Popular posts from this blog

sql - text truncated using perl DBI insert -

c++ - Is it possible to compile a VST on linux? -

php - Pass object by reference or value -