driverOptions.put_int('Color Source', 'Visible Colors') Boost.Python.ArgumentError: Python argument types in PropertyTree.put_int(PropertyTree, str, str) did not match C++ signature: put_int(class boost::property_tree::basic_ptree<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > {lvalue}, class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > item_path, int value)如何解决这个问题
时间: 2023-09-22 10:07:34 浏览: 97
Windows7安装时无法创建新分区.pdf
这个错误提示是因为 Python 中传入的参数类型与 C++ 中定义的函数签名不匹配所致。
通过错误提示可以看到,Python argument types in PropertyTree.put_int(PropertyTree, str, str) 中,第二个和第三个参数都是字符串类型,而 C++ signature 中第二个参数是字符串类型,第三个参数是整型。因此,我们需要将第三个参数从字符串类型转换为整型。
可以尝试使用 int() 函数将字符串转换为整型,例如:
```
driverOptions.put_int('Color Source', int('Visible Colors'))
```
或者,如果你确定 'Visible Colors' 对应的整数值,也可以直接传入整型,例如:
```
driverOptions.put_int('Color Source', 1)
```
注意,这里假设 'Visible Colors' 对应的整数值是 1,具体需要根据上下文来确定。
阅读全文