菜鸟教程小白 发表于 2022-12-13 03:38:11

android - 如何在 Kotlin/Native 中将 const char* 转换为 KString?


                                            <p><p>在 C++ 文件中,我想将 const char* 转换为 KString,然后我可以使用 <a href="https://github.com/JetBrains/kotlin-native" rel="noreferrer noopener nofollow">Kotlin/Native</a> 将 KString 传递给 Kotlin 文件.</p>

<p>我相信答案在于功能</p>

<pre><code>    OBJ_GETTER(utf8ToUtf16, const char* rawString, size_t rawStringLength)
</code></pre>

<p>我在 <a href="https://github.com/JetBrains/kotlin-native/blob/master/runtime/src/main/cpp/KString.cpp" rel="noreferrer noopener nofollow">KString.cpp</a> 中找到的.但即使我在 <a href="https://github.com/JetBrains/kotlin-native/blob/master/runtime/src/main/cpp/Memory.h" rel="noreferrer noopener nofollow">Memory.h</a> 中发现了使用的定义语句,我还没有设法从我自己的 C++ 文件中正确调用函数 <code>utf8ToUtf16</code> 来获取 KString。任何帮助表示赞赏。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这取决于您希望如何与 Kotlin 代码交互。如果你用<code>-produce dynamic</code>生成动态库,那么字符串会自动转换,例如<a href="https://github.com/JetBrains/kotlin-native/blob/adf8614889e8cf5038a79960aa9651ca7d45e409/samples/python_extension/src/main/c/kotlin_bridge.c#L72" rel="noreferrer noopener nofollow">https://github.com/JetBrains/kotlin-native/blob/adf8614889e8cf5038a79960aa9651ca7d45e409/samples/python_extension/src/main/c/kotlin_bridge.c#L72</a> .
所以根本不需要额外的魔法。与 Objective-C 字符串和 <code>-produce framework</code> 相同。对于其他情况,不需要传递字符串 C -> Kotlin(使用 <code>staticCFunction</code> 生成的回调也可以进行自动转换)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于android - 如何在 Kotlin/Native 中将 const char* 转换为 KString?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/47664501/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/47664501/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 如何在 Kotlin/Native 中将 const char* 转换为 KString?