3

考虑 Djinni 的文档

它说:

# This interface will be implemented in C++ and can be called from any language.
my_cpp_interface = interface +c {
    # ...
}

此外,它还说:

# This interface will be implemented in Java and ObjC and can be called from C++.
my_client_interface = interface +j +o {
    # ...
}

无论如何,我的情况是,我有一个可以在客户端或 C++ 端定义的对象。
因此,我想使用如下语法:

my_interface = interface +j +o +c {
    # ...
}

它是有效的语法,djinni 支持的东西(它运行没有错误,但我不知道生成的代码是否也有效)还是我应该重新考虑的东西?

4

1 回答 1

2

是的,它工作得很好,并且将为该接口生成必要的代理和编组代码,以便以任何语言实现。

于 2016-03-25T02:28:53.807 回答