如何在主函数中访问订阅者 class 的 public 变量?
How to access a public variable of subscriber class in the main function?
我想在我的代码的 main() 函数中访问我在订阅者 class 中定义的 listener::flow_message
(一个 public 变量)。在下面的代码中,我只是简单地打印了 flow_message
参数来显示问题。
我将 flow_message
的访问修饰符更改为 private 和 protected 但它出现编译错误,我发现在主函数中访问此变量的唯一方法是将其定义为 public。我可以获得一些属性,例如 flow_message
向量的大小,主要使用以下命令:
list.flow_message.size();
但是例如,当我想访问 flow_message
向量的第一个成员时,使用下面的命令我得到了分段错误。
list.flow_message[0];
// this is my code for subscribing the optical flow data
// using a class for subscriber callback function:
#include<ros/ros.h>
#include<opencv_apps/FlowArrayStamped.h>
#include<opencv_apps/FlowArray.h>
#include<opencv_apps/Flow.h>
#include<opencv_apps/Point2D.h>
#include<vector>
#include<numeric>
using namespace std;
class listener
{
public:
vector<opencv_apps::Flow> flow_message;
void callback(const opencv_apps::FlowArrayStamped::ConstPtr& msg);
};
void listener::callback(const opencv_apps::FlowArrayStamped::ConstPtr& msg)
{
listener::flow_message = msg->flow;
ROS_INFO("i got it");
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "dataman");
ros::NodeHandle n;
listener list;
ros::Subscriber sub = n.subscribe("/lk_flow/flows", 1, &listener::callback, &list);
while(ros::ok())
{
cout << "this is it: " << list.flow_message[0] << endl;
ros::spinOnce();
}
return 0;
}
正如我之前提到的,我的错误是在 运行 时间:
Segmentation fault (core dumped)
感谢任何帮助或评论...
你去获取 flow_message[0]
但你从未将元素添加到向量中。如果向量为空,则 flow_message[0]
不存在。
vector中添加元素太多,请大家留言。
但您还应该检查向量中的元素:
while(ros::ok()) {
if (list.flow_message.empty()) {
std::cout << "no messages" << std::endl;
} else {
std::cout << "this is it: " << list.flow_message[0] << std::endl;
}
ros::spinOnce();
}
我想在我的代码的 main() 函数中访问我在订阅者 class 中定义的 listener::flow_message
(一个 public 变量)。在下面的代码中,我只是简单地打印了 flow_message
参数来显示问题。
我将 flow_message
的访问修饰符更改为 private 和 protected 但它出现编译错误,我发现在主函数中访问此变量的唯一方法是将其定义为 public。我可以获得一些属性,例如 flow_message
向量的大小,主要使用以下命令:
list.flow_message.size();
但是例如,当我想访问 flow_message
向量的第一个成员时,使用下面的命令我得到了分段错误。
list.flow_message[0];
// this is my code for subscribing the optical flow data
// using a class for subscriber callback function:
#include<ros/ros.h>
#include<opencv_apps/FlowArrayStamped.h>
#include<opencv_apps/FlowArray.h>
#include<opencv_apps/Flow.h>
#include<opencv_apps/Point2D.h>
#include<vector>
#include<numeric>
using namespace std;
class listener
{
public:
vector<opencv_apps::Flow> flow_message;
void callback(const opencv_apps::FlowArrayStamped::ConstPtr& msg);
};
void listener::callback(const opencv_apps::FlowArrayStamped::ConstPtr& msg)
{
listener::flow_message = msg->flow;
ROS_INFO("i got it");
}
int main(int argc, char **argv)
{
ros::init(argc, argv, "dataman");
ros::NodeHandle n;
listener list;
ros::Subscriber sub = n.subscribe("/lk_flow/flows", 1, &listener::callback, &list);
while(ros::ok())
{
cout << "this is it: " << list.flow_message[0] << endl;
ros::spinOnce();
}
return 0;
}
正如我之前提到的,我的错误是在 运行 时间:
Segmentation fault (core dumped)
感谢任何帮助或评论...
你去获取 flow_message[0]
但你从未将元素添加到向量中。如果向量为空,则 flow_message[0]
不存在。
vector中添加元素太多,请大家留言。
但您还应该检查向量中的元素:
while(ros::ok()) {
if (list.flow_message.empty()) {
std::cout << "no messages" << std::endl;
} else {
std::cout << "this is it: " << list.flow_message[0] << std::endl;
}
ros::spinOnce();
}