boost python - Python 缓冲区到 C++标准::字符串

发布于 2025-01-06 13:46:28 字数 327 浏览 0 评论 0原文

我有一个 C++ 函数,它接受一个 std::string 作为参数和一个作为缓冲区的 python 对象。我以为我可以直接传递缓冲区,并且 Boost Python 会自动将其转换为字符串,但事实并非如此:

Boost.Python.ArgumentError: Python argument types in
    mod.decrypt(buffer)
did not match C++ signature:
    decrypt(std::string string_to_decrypt)

是否有必要为此编写转换器?我以为它会隐式转换。感谢您的任何建议。

I have a C++ function that takes one std::string as an argument and a python object that is a buffer. I thought that I could pass the buffer directly and that Boost Python would convert it to a string automatically, but it does not:

Boost.Python.ArgumentError: Python argument types in
    mod.decrypt(buffer)
did not match C++ signature:
    decrypt(std::string string_to_decrypt)

Is it necessary to write converters for this? I thought it would implicitly convert. Thanks for any advice.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲念泪 2025-01-13 13:46:28

错误消息说明了一切 - 您的签名是一个字符串,但您向它传递了一个缓冲区。

它不会内省对象来确定如何转换它 - 缓冲区可以是任何东西。

你需要转换它。

The error message says it all - your signature is a string, but you're passing it a buffer.

It's not going to introspect the object to determine how to convert it - buffer could be anything.

You need to convert it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文