博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java 访问 C++ 方法:JavaCPP
阅读量:5947 次
发布时间:2019-06-19

本文共 1581 字,大约阅读时间需要 5 分钟。

  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());

  }

  }

  复制代码

转载于:https://www.cnblogs.com/anjijiji/p/6265241.html

你可能感兴趣的文章
有序的双链表
查看>>
程序员全国不同地区,微信(面试 招聘)群。
查看>>
【干货】界面控件DevExtreme视频教程大汇总!
查看>>
闭包 !if(){}.call()
查看>>
python MySQLdb安装和使用
查看>>
Java小细节
查看>>
poj - 1860 Currency Exchange
查看>>
chgrp命令
查看>>
Java集合框架GS Collections具体解释
查看>>
洛谷 P2486 BZOJ 2243 [SDOI2011]染色
查看>>
linux 笔记本的温度提示
查看>>
数值积分中的辛普森方法及其误差估计
查看>>
Web service (一) 原理和项目开发实战
查看>>
跑带宽度多少合适_跑步机选购跑带要多宽,你的身体早就告诉你了
查看>>
广平县北方计算机第一届PS设计大赛
查看>>
深入理解Java的接口和抽象类
查看>>
java与xml
查看>>
Javascript异步数据的同步处理方法
查看>>
iis6 zencart1.39 伪静态规则
查看>>
SQL Server代理(3/12):代理警报和操作员
查看>>