gpt4 book ai didi

c++ - Python:将 unicode 字符串传递给 C++ 模块

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:06 28 4
gpt4 key购买 nike

我目前正在使用一个现有的模块,它提供了一个 C++ 接口(interface)并对字符串进行了一些操作。

我需要使用 Unicode 字符串,不幸的是模块不支持 Unicode 接口(interface),所以我写了一个额外的函数来添加到接口(interface)中:

void SomeUnicodeFunction(const wchar_t* string)

但是,当我尝试在 Python 中使用以下代码时:

SomeModule.SomeUnicodeFunction(ctypes.c_wchar_p(unicode_string))

我收到这个错误:

ArgumentError: Python argument types in
SomeModule.SomeUnicodeFunction(SomeModule, c_wchar_p)
did not match C++ signature:
SomeUnicodeFunction(... {lvalue}, wchar_t const*)

(名称已更改)。

我曾尝试将 C++ 模块中的 wchar_t 更改为 Py_UNICODE,但没有成功。我该如何解决这个问题?

最佳答案

对于 Linux,您不必更改 API,只需执行以下操作:

SomeModule.SomeFunction(str(s.encode('utf-8')))

在 Windows 上,所有 Unicode API 都使用 UTF-16 LE (Little Endian),因此您必须以这种方式对其进行编码:

SomeModule.SomeFunctionW(str(s.encode('utf-16-le')))

提示:wchar_t 在不同的平台上可以有不同的大小:8、16 或 32 位。

关于c++ - Python:将 unicode 字符串传递给 C++ 模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3744247/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com