When swig generates a java interface from C language, in the generated _wrap.c file, the function name with underscore in the original C language file will add a number 1 after the underscore

Possible Causes:

JNI uses an underscore as a separator when mapping between Java and C. If the function name also has an underscore, a number 1 will be added after the underscore of the function name to distinguish it.

Guess you like

Origin blog.csdn.net/eidolon_foot/article/details/109240057