2

where to find the source code of the machine specific native methods declared in java...

For example private static native Class forName0(String name, boolean initialize, ClassLoader loader)

1 Answers1

2

Use Google code search (see here for the search results).

You'll be looking for C code from the JDK implementation.

Jeff Foster
  • 43,770
  • 11
  • 86
  • 103