错误 C2338 THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY PCL D:\PCL 1.12.1\3rdParty\Eigen\eigen3\Eigen\src\Core\AssignEvaluator.h 886
时间: 2023-09-06 22:10:59 浏览: 329
这个错误信息是出现在使用 PCL 库时的编译错误。它的意思是在 AssignEvaluator.h 的第 886 行,THIS_EXPRESSION_IS_NOT_A_LVALUE__IT_IS_READ_ONLY,即“此表达式不是左值,它是只读的”。这个错误通常是由于尝试修改一个只读的变量或对象而导致的。可以检查代码中是否有对只读变量的修改,或者尝试使用 const_cast 将只读变量转换为可写变量。
相关问题
error: cannot bind non-const lvalue reference of type ‘std::__cxx11::string& {aka std::__cxx11::basic_string<char>&}’ to an rvalue of type ‘std::__cxx11::string {aka std::__cxx11::basic_string<char>}’ identify.init("best.engine");
这个错误提示是说你在调用函数 `identify.init("best.engine")` 时,函数参数类型不匹配。具体来说,函数 `init` 的参数类型是非常量左值引用 `std::string&`,而你传递的是一个右值 `std::string`(即 `"best.engine"`),这就无法匹配了。
解决这个问题的方法有两种:
1. 将函数 `init` 的参数类型改为常量引用 `const std::string&`。这样就可以接受右值参数了。修改后的函数声明应该是这样的:`void init(const std::string& arg)`。
2. 将 `"best.engine"` 转换为左值。可以通过将其定义为 `std::string` 对象来实现,例如:`std::string engine = "best.engine"; identify.init(engine);`。
选择哪种方法取决于你的具体情况。如果你需要在函数内部修改传递的字符串,那么第一种方法可能不太合适,应该选择第二种方法。如果你只需要读取传递的字符串,那么第一种方法更为简单和高效。
driverOptions.put_propertyTree('ColorSource', 'Visible Colors') Boost.Python.ArgumentError: Python argument types in PropertyTree.put_propertyTree(PropertyTree, str, str) did not match C++ signature: put_propertyTree(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, 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> > > > child_tree)如何解决这个问题
这个错误是由于Python调用C++函数时,传递的参数类型和C++函数的参数类型不匹配导致的。具体而言,Python中的str类型和C++中的std::string类型不兼容。
要解决这个问题,你需要将Python的str类型转换为C++的std::string类型。可以使用以下代码实现:
```python
import ctypes
def to_std_string(py_string):
return ctypes.c_char_p(py_string.encode('utf-8')).value.decode('utf-8')
driverOptions.put_propertyTree(to_std_string('ColorSource'), to_std_string('Visible Colors'))
```
在这个代码中,to_std_string()函数将Python的str类型转换为C++的std::string类型。在调用put_propertyTree()函数时,我们使用to_std_string()将Python的字符串参数转换为C++字符串参数,从而解决了类型不匹配的问题。
阅读全文