考虑 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 支持的东西(它运行没有错误,但我不知道生成的代码是否也有效)还是我应该重新考虑的东西?