lookup<T extends NativeType>方法

Pointer<T> lookup<T extends NativeType>(
  1. String symbolName
)

在DynamicLibrary中查找符号并返回其在内存中的地址。

类似于系统调用dlsym(3)的功能。

符号必须由动态库提供。要检查库是否提供此类符号,请使用providesSymbol

实现

external Pointer<T> lookup<T extends NativeType>(String symbolName);