上面代码报错Use of undeclared identifier 'tmio_'
时间: 2023-10-09 07:08:56 浏览: 221
报如下错误
这个错误提示是因为 `tmio_` 变量未被声明或定义。你需要在代码中添加声明或定义语句,例如:
```
std::unique_ptr<tmio::Tmio> tmio_;
```
这样就可以在代码中使用 `tmio_` 变量了。请注意,这里使用了智能指针 `std::unique_ptr` 来管理 `Tmio` 对象,以免出现内存泄漏等问题。
阅读全文