//定义发布的频率 每隔1秒更新一次
ros::Rate loop_rate(1.0);
//循环发布msg
//一旦发生异常ros::ok()就会返回false,跳出循环.
while (ros::ok())
{
//ROS_INFO 用来打印消息 类似 Print()/cout函数
ROS_INFO("this is a test ");
//以1Hz的频th
//根据前面定义的频率, sleep 1s
loop_rate.sleep();//根据前面的定义的loop_rate,设置1s的暂停
}
return 0;
}