慕少森
从 jdk/src/share/native/java/lang/Object.c 文件里, 你可以找到static JNINativeMethod methods[] = {
{"hashCode", "()I", (void *)&JVM_IHashCode}, {"wait", "(J)V", (void *)&JVM_MonitorWait}, {"notify", "()V", (void *)&JVM_MonitorNotify}, {"notifyAll", "()V", (void *)&JVM_MonitorNotifyAll}, {"clone", "()Ljava/lang/Object;", (void *)&JVM_Clone},};所以你需要在原生代码里看看JVM_MonitorWait你可以用grep去检索, 更好的工具是 source insight