本文整理了Java中com.sun.jna.Native.isCompatibleVersion()
方法的一些代码示例,展示了Native.isCompatibleVersion()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Native.isCompatibleVersion()
方法的具体详情如下:
包路径:com.sun.jna.Native
类名称:Native
方法名:isCompatibleVersion
[英]Version string must have the structure .. a bugfix change in the native code increments revision, the minor is incremented for backwards compatible changes and the major version is changed for backwards incompatbile changes.
[中]版本字符串必须具有以下结构。。本机代码中的错误修复更改会增加修订,次要版本会增加向后兼容的更改,主要版本会更改向后不兼容的文件更改。
代码示例来源:origin: net.java.dev.jna/jna
loadNativeDispatchLibrary();
if (! isCompatibleVersion(VERSION_NATIVE, getNativeVersion())) {
String LS = System.getProperty("line.separator");
throw new Error(LS + LS
代码示例来源:origin: org.elasticsearch/jna
loadNativeDispatchLibrary();
if (! isCompatibleVersion(VERSION_NATIVE, getNativeVersion())) {
String LS = System.getProperty("line.separator");
throw new Error(LS + LS
内容来源于网络,如有侵权,请联系作者删除!