SWIG C++结构体转java

发布于 2024-10-11 22:32:53 字数 649 浏览 6 评论 0原文

我试图获得一个简单的 SWIG 示例,该示例使用结构作为返回类型,但我生成的文件不正确。我的文件看起来像这样。

SwigTest.h
#pragma once
#include "MyHeader.h"
class SwigTest
{
public:
    MyHeader testMe();
};

MyHeader.h
struct MyHeader {
    int x;
}

我的 swig 接口文件是:

%module MyModule
%{
#include "SwigTest.h"
#include "MyHeader.h"
%}
extern MyHeader testMe();

生成的 JNI 文件具有以下方法声明

public class MyModuleJNI {
  public final static native long testMe();
}

如果我的方法返回一个原语,它可以正常工作,但不能与结构一起使用。我在 Windows 上运行 swig.exe -java -c++ MyModule.i

编辑:我想我还需要在 .i 文件中声明一个结构。有人可以证实(或质疑)这一点吗?谢谢。

谢谢, 杰夫

I'm trying to get a simple SWIG example to work that uses a struct as a return type, but my generated file is incorrect. My files look like this.

SwigTest.h
#pragma once
#include "MyHeader.h"
class SwigTest
{
public:
    MyHeader testMe();
};

MyHeader.h
struct MyHeader {
    int x;
}

and my swig interface file is:

%module MyModule
%{
#include "SwigTest.h"
#include "MyHeader.h"
%}
extern MyHeader testMe();

The resulting JNI file has the following method declaration

public class MyModuleJNI {
  public final static native long testMe();
}

If my method returns a primitive, it works fine, but not with the struct. I'm running on windows with swig.exe -java -c++ MyModule.i

EDIT: I think I need to declare a struct in the .i file as well. Could someone confirm (or dispute) that? Thanks.

thanks,
Jeff

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2024-10-18 22:32:53

是的,您还需要在接口文件中声明该结构。

试试这个:

%module MyModule
%{
#include "MyHeader.h"
#include "SwigTest.h"
%}

%include "MyHeader.h"
%include "SwigTest.h"

在使用该结构的代码之前声明该结构也更安全。

Yes you need to declare the struct in the interface file as well.

Try this:

%module MyModule
%{
#include "MyHeader.h"
#include "SwigTest.h"
%}

%include "MyHeader.h"
%include "SwigTest.h"

Also its safer to declare the struct before the code that makes use of it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文