zoukankan      html  css  js  c++  java
  • Java 访问 C++ 方法:JavaCPP

      JavaCPP提供了在Java中高效访问本地C++的方法。采用JNI技术实现,支持所有Java实现包括Android系统,Avian 和 RoboVM。

      JavaCPP提供了一系列的Annotation将java代码映射到C++代码,并使用一个可执行的jar包将C++代码转化为可以从JVM内调用的动态链接库文件

      Maven:

      <dependency>

      <groupId>org.bytedeco</groupId>

      <artifactId>javacpp</artifactId>

      <version>0.11</version>

      </dependency>

      复制代码

      使用方法:

      C++:

      #include <string>

      namespace LegacyLibrary {

      class LegacyClass {

      public:

      const std::string& get_property() { return property; }

      void set_property(const std::string& property) { this->property = property; }

      std::string property;

      };

      }

      复制代码

      Java:

      import org.bytedeco.javacpp.*;

      import org.bytedeco.javacpp.annotation.*;

      @Platform(include="LegacyLibrary.h")

      @Namespace("LegacyLibrary")

      public class LegacyLibrary {

      public static class LegacyClass extends Pointer {

      static { Loader.load(); }

      public LegacyClass() { allocate(); }

      private native void allocate();

      // to call the getter and setter functions

      public native @StdString String get_property(); public native void set_property(String property);

      // to access the member variable directly

      public native @StdString String property(); public native void property(String property);

      }

      public static void main(String[] args) {

      // Pointer objects allocated in Java get deallocated once they become unreachable,

      // but C++ destructors can still be called in a timely fashion with Pointer.deallocate()

      LegacyClass l = new LegacyClass();

      l.set_property("Hello World!");

      System.out.println(l.property());

      }

      }

      复制代码

  • 相关阅读:
    [.Net 5.0] 笔记
    java计算两个字符串日期的相差天数
    记一个使用fyne-cross编译的坑
    windows gcc 遇到的问题解决
    异步处理在支付环节的应用
    怎么修复 "replaceAll is not a function" JavaScript Error?
    Js生成随机数 生成随机字符串的5种方法
    json-bigint的介绍和使用-解决Javascript的有关大整数问题
    国产操作系统——银河麒麟V10 SP1使用小结
    【转载】 银河麒麟V10系统安装U盘制作
  • 原文地址:https://www.cnblogs.com/anjijiji/p/6265241.html
Copyright © 2011-2022 走看看