Identify library file/Source that contains native method implementation

后端 未结 3 474
日久生厌
日久生厌 2021-01-27 16:01

How to identify library file that contains implementation of native methods ?

Ex.

public native String intern();

Where can I find imple

3条回答
  •  自闭症患者
    2021-01-27 16:57

    Found answer for String.intern() with quick google search

    • constant pool
    • symbol table cpp : symbol table hpp

    Yet to find answer for generic way to identify native implementation/library

提交回复
热议问题