在 C++ 文件中,我想将 const char* 转换为 KString,然后我可以使用 Kotlin/Native 将 KString 传递给 Kotlin 文件.
我相信答案在于功能
OBJ_GETTER(utf8ToUtf16, const char* rawString, size_t rawStringLength)
我在 KString.cpp 中找到的.但即使我在 Memory.h 中发现了使用的定义语句,我还没有设法从我自己的 C++ 文件中正确调用函数 utf8ToUtf16 来获取 KString。任何帮助表示赞赏。
Best Answer-推荐答案 strong>
这取决于您希望如何与 Kotlin 代码交互。如果你用-produce dynamic 生成动态库,那么字符串会自动转换,例如https://github.com/JetBrains/kotlin-native/blob/adf8614889e8cf5038a79960aa9651ca7d45e409/samples/python_extension/src/main/c/kotlin_bridge.c#L72 .
所以根本不需要额外的魔法。与 Objective-C 字符串和 -produce framework 相同。对于其他情况,不需要传递字符串 C -> Kotlin(使用 staticCFunction 生成的回调也可以进行自动转换)。
关于android - 如何在 Kotlin/Native 中将 const char* 转换为 KString?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/47664501/
|