invalid use of membinvalid use of member ‘LabelParse::bytes_status’ in static member function er ‘LabelParse::bytes_status’ in static member function
时间: 2024-04-09 18:27:10 浏览: 74
ERROR: Error in Log_event::read_log_event()
这个错误提示说明在一个静态成员函数中无效地使用了非静态成员变量`LabelParse::bytes_status`。静态成员函数是属于类而不是对象的函数,因此不能访问非静态成员变量,因为非静态成员变量是属于对象的。要解决这个问题,可以将`bytes_status`变量声明为静态成员变量,或者修改静态成员函数的实现,使其不需要访问非静态成员变量。
阅读全文