1

Webページからコールバック関数の例をテストしたかっただけです。

https://github.com/bytedeco/javacpp#creating-callback-functions

ファイル foo.cpp 内

#include <iostream>
#include "jniFoo.h"

int main() {
    JavaCPP_init(0, NULL);
    try {
        foo(6, 7);
    } catch (std::exception &e) {
        std::cout << e.what() << std::endl;
    }
    JavaCPP_uninit();
}

関数 foo が実行される Foo.java

import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

@Platform(include="<algorithm>")
@Namespace("std")
public class Foo {
    static { Loader.load(); }

    public static class Callback extends FunctionPointer {
        // Loader.load() and allocate() are required only when explicitly creating an instance
        static { Loader.load(); }
        protected Callback() { allocate(); }
        private native void allocate();

        public @Name("foo") boolean call(int a, int b) throws Exception { 
            throw new Exception("bar " + a * b);
        }
    }

    // We can also pass (or get) a FunctionPointer as argument to (or return value from) other functions
    public static native void stable_sort(IntPointer first, IntPointer last, Callback compare);

    // And to pass (or get) it as a C++ function object, annotate with @ByVal or @ByRef
    public static native void sort(IntPointer first, IntPointer last, @ByVal Callback compare);
}

Linux x86_64 で次のコマンドを使用して、このサンプル コードをビルドして実行します。

javac -cp javacpp.jar Foo.java
java -jar javacpp.jar Foo -header
g++ -I/usr/lib/jvm/java-8-oracle/include/ -I/usr/lib/jvm/java-8-oracle/include/linux/ linux-x86_64/libjniFoo.so foo.cpp -o Foo

3 番目のコマンドで、エラーが発生しました。

/tmp/ccvrmILI.o: In function `main':
foo.cpp:(.text+0x14): undefined reference to `JavaCPP_init'
foo.cpp:(.text+0x1e): undefined reference to `onAddTwoInteger'
foo.cpp:(.text+0x23): undefined reference to `JavaCPP_uninit'
collect2: error: ld returned 1 exit status  

なぜ私はそれを得るのですか?

4

1 に答える 1

1

コマンド ラインでオブジェクト ファイルの前にライブラリが配置されているため、エラーが発生します。

例のg++コマンドはどこかで動作する可能性がありますが、gcc/linux-linker では動作しません。問題は、コマンドの引数の順序です。あなたが実行する場合

g++ -I/usr/lib/jvm/java-8-oracle/include/ -I/usr/lib/jvm/java-8-oracle/include/linux/ foo.cpp linux-x86_64/libjniFoo.so -o Foo

正常にコンパイルおよびリンクされます。

于 2016-04-30T08:36:47.760 に答える