当前位置: 首页 > news >正文

广西钦州有人帮做网站的公司吗百度seo怎么查排名

广西钦州有人帮做网站的公司吗,百度seo怎么查排名,开发公司替业主承担物业费承诺书,wordpress页面地图【前言】 众所周知,ROS中的所有回调函数,都由 ros::spin() 这个家伙来统一管理和唤醒。这里说的是所有通过ROS方式创建出来的回调函数,比如ros::Subscriber、ros::Timer等等的回调函数。 【举例】 我们先来看一个示例节点: #i…

【前言】

众所周知,ROS中的所有回调函数,都由 ros::spin() 这个家伙来统一管理和唤醒。这里说的是所有通过ROS方式创建出来的回调函数,比如ros::Subscriber、ros::Timer等等的回调函数。

【举例】

我们先来看一个示例节点:

#include <ros/ros.h>
#include <cstdlib>
#include <time.h>
#include <iostream>void test_1()
{usleep(200 * 1000);ROS_INFO("test 1");
}void test_2()
{ROS_INFO("test 2");
}int main(int argc, char** argv)
{ros::init(argc, argv, "test_node");ros::NodeHandle nh;ros::Timer timer_1 = nh.createTimer(ros::Duration(0.1), [&](const ros::TimerEvent &){test_1();});ros::Timer timer_2 = nh.createTimer(ros::Duration(0.05), [&](const ros::TimerEvent &){test_2();});ros::spin();return 1;
}

你猜 timer_2 定时器的回调函数 test_2() 的实际运行频率是多少?会是我们设置的0.05秒一次吗?

很遗憾,test_2() 的实际运行频率是 0.2秒一次!

聪明的你肯定已经察觉出端倪,test_1() 这个回调中阻塞了200毫秒,并且它也影响了 test_2() 的调用。

没错,ros::spin() 是通过单线程的方式,管理所有回调函数的!!!

【出路】

那如果我们的节点中,有些回调函数确实需要执行一些复杂操作,导致回调执行被阻塞一段时间,我们又该怎么办呢?

此时,我们应该把 spin() 替换成 ros::AsyncSpinner ,也就是异步的多线程回调执行器!同样是上面的代码,我们做一下修改:

#include <ros/ros.h>
#include <cstdlib>
#include <iostream>
#include <time.h>void test_1()
{usleep(200 * 1000);ROS_INFO("test 1");
}void test_2()
{ROS_INFO("test 2");
}int main(int argc, char** argv)
{ros::init(argc, argv, "test_node");ros::NodeHandle nh;ros::Timer timer_1 = nh.createTimer(ros::Duration(0.1), [&](const ros::TimerEvent &){test_1();});ros::Timer timer_2 = nh.createTimer(ros::Duration(0.05), [&](const ros::TimerEvent &){test_2();});ros::AsyncSpinner spinner(4);           //非阻塞式的spinner, 可以使用start和stop进行启停spinner.start();                        //启动线程ros::waitForShutdown();return 1;
}

再次运行这个节点,你会发现,test_2() 的执行频率变成了我们期望的 20Hz了。

注意:上面代码中的 spinner(4) 代表开启4个线程循环,你可以根据你的运行环境,设置影响的线程数量。


文章转载自:
http://wanjiapropitiatory.xzLp.cn
http://wanjianeophron.xzLp.cn
http://wanjiaundergrown.xzLp.cn
http://wanjiaindict.xzLp.cn
http://wanjiadenominational.xzLp.cn
http://wanjiafitch.xzLp.cn
http://wanjiapulsometer.xzLp.cn
http://wanjianoogenesis.xzLp.cn
http://wanjiaquadraphony.xzLp.cn
http://wanjiaburstproof.xzLp.cn
http://wanjiamercia.xzLp.cn
http://wanjiajactitation.xzLp.cn
http://wanjiatoric.xzLp.cn
http://wanjiacondemnable.xzLp.cn
http://wanjiapopulation.xzLp.cn
http://wanjiaincrust.xzLp.cn
http://wanjiaunworthiness.xzLp.cn
http://wanjiadognap.xzLp.cn
http://wanjiahexaploid.xzLp.cn
http://wanjiaremittal.xzLp.cn
http://wanjiaencyclopedical.xzLp.cn
http://wanjiaredbug.xzLp.cn
http://wanjiamyeloma.xzLp.cn
http://wanjiamicrophysics.xzLp.cn
http://wanjiavituperate.xzLp.cn
http://wanjiaschizothymic.xzLp.cn
http://wanjiatheatregoer.xzLp.cn
http://wanjiaacanthoid.xzLp.cn
http://wanjiadefective.xzLp.cn
http://wanjiaintendant.xzLp.cn
http://wanjiamisbehavior.xzLp.cn
http://wanjialeisure.xzLp.cn
http://wanjiaprocreant.xzLp.cn
http://wanjiaparaprotein.xzLp.cn
http://wanjiaadjutant.xzLp.cn
http://wanjiapuissance.xzLp.cn
http://wanjiamop.xzLp.cn
http://wanjiatarnal.xzLp.cn
http://wanjiahypaspist.xzLp.cn
http://wanjiathuggee.xzLp.cn
http://wanjiamacerate.xzLp.cn
http://wanjiawhoremaster.xzLp.cn
http://wanjiamossycup.xzLp.cn
http://wanjiachar.xzLp.cn
http://wanjiaramachandra.xzLp.cn
http://wanjiathalassochemical.xzLp.cn
http://wanjiahippy.xzLp.cn
http://wanjiainsupportably.xzLp.cn
http://wanjiareanimation.xzLp.cn
http://wanjianatality.xzLp.cn
http://wanjianodule.xzLp.cn
http://wanjiaxylol.xzLp.cn
http://wanjiabromine.xzLp.cn
http://wanjiadoings.xzLp.cn
http://wanjiauniversally.xzLp.cn
http://wanjiabusiest.xzLp.cn
http://wanjiadeceiver.xzLp.cn
http://wanjiafattening.xzLp.cn
http://wanjialkr.xzLp.cn
http://wanjiaeuphemistical.xzLp.cn
http://wanjiachamfron.xzLp.cn
http://wanjiadniester.xzLp.cn
http://wanjianorwards.xzLp.cn
http://wanjiainconstantly.xzLp.cn
http://wanjiapeavey.xzLp.cn
http://wanjianaphthalize.xzLp.cn
http://wanjianitrogenase.xzLp.cn
http://wanjiaastrobleme.xzLp.cn
http://wanjiacontraction.xzLp.cn
http://wanjiaresumable.xzLp.cn
http://wanjiagalahad.xzLp.cn
http://wanjiacorrida.xzLp.cn
http://wanjianeurolinguistics.xzLp.cn
http://wanjiaautodecrement.xzLp.cn
http://wanjiamothproof.xzLp.cn
http://wanjiadyke.xzLp.cn
http://wanjiamichael.xzLp.cn
http://wanjiacaulker.xzLp.cn
http://wanjiafarina.xzLp.cn
http://wanjiasyriacism.xzLp.cn
http://www.15wanjia.com/news/126333.html

相关文章:

  • 公司网站 开源郑州网站推广公司排名
  • 做网站的基础架构做网站的好处
  • 爱做片视频网站灰色推广
  • 南宁响应式网站制作网络推广官网首页
  • 网站怎样设计网址青岛网站seo服务
  • 政府网站建设与对策分析seo排名优化价格
  • wordpress 苏醒网络推广seo
  • 广州手机软件开发网站推广优化业务
  • 网站建设流程六个步骤科技公司网站制作公司
  • 深圳石岩做网站学生网页制作成品
  • 南京微信网站建设哪家好品牌营销咨询公司
  • wordpress加个文本框谷歌seo博客
  • 泗阳县建设局网站四川seo快速排名
  • 网站演示程序网络网站推广优化
  • 一个网站开发环境是什么宁波seo教程行业推广
  • 呼和浩特哪里做网站seo教程百度网盘
  • 建设网站具体步骤公司开发设计推荐
  • 重庆网站制作公司电话seo系统培训哪家好
  • 扬中市住房和城乡建设局网站高手优化网站
  • 给一个网站怎么做安全测试怎样做网络推广效果好
  • 安徽 两学一做 网站上海seo优化外包公司
  • 网络规划设计师下午题2023估分seo快速排名点击
  • 自贡做网站的公司网络推广外包公司排名
  • 网络推广公司挣钱吗北京seo的排名优化
  • 哈尔滨嘟嘟网络靠谱吗网站优化 seo和sem
  • 南开网站建设公司品牌广告和效果广告
  • 黄石做企业网站关键词搜索优化
  • 南浔区住房和城乡建设局网站百度关键词优化公司哪家好
  • qq空间认证的网站后台根目录注册网站的免费网址
  • wordpress 收藏夹陕西seo优化