当前位置: 首页 > news >正文 六安找人做网站snippets wordpress news 2025/11/3 1:12:17 六安找人做网站,snippets wordpress,义乌做网站,wap手机建站平台1. 关键词2. 问题3. 解决思路4. 代码实现 4.1. timecount.h4.2. timecount.cpp 5. 测试代码6. 运行结果7. 源码地址 1. 关键词 C 时间处理 统计函数运行时间 跨平台 2. 问题 C如何简单便捷地实现“函数运行时间的统计”功能#xff1f; 3. 解决思路 类的构造函数#x…1. 关键词2. 问题3. 解决思路4. 代码实现 4.1. timecount.h4.2. timecount.cpp 5. 测试代码6. 运行结果7. 源码地址 1. 关键词 C 时间处理 统计函数运行时间 跨平台 2. 问题 C如何简单便捷地实现“函数运行时间的统计”功能 3. 解决思路 类的构造函数会在对象初始化的时候被调用。类的析构函数会在对象销毁的时候被调用。局部对象的生命周期对象实例化也就是初始化时开始退出作用域时结束。 4. 代码实现 4.1. timecount.h #pragma once#include cstdint #include atomic #include stringnamespace cutl {/*** brief A simple time counter class to measure the execution time of a function.**/class timecount{public:/*** brief Construct a new timecount object* The constructor will record the begin time of the function calling.* param func_name*/timecount(const std::string func_name);/*** brief Destroy the timecount object* The desctructor will record the end time of the function calling and calculate the execution time.*/~timecount();private:std::string func_name_;std::atomicuint64_t start_time_;};} // namespace4.2. timecount.cpp #include timecount.h #include timeutil.h #include strfmt.h #include inner/logger.hnamespace cutl {timecount::timecount(const std::string func_name): func_name_(func_name){start_time_ clocktime(timeunit::us);}timecount::~timecount(){auto end_time clocktime(timeunit::us);auto duration end_time - start_time_;auto text [timecount] func_name_ used fmt_timeduration_us(duration);CUTL_LOGGER.info(, text);} } // namespace5. 测试代码 #pragma once#include iostream #include timecount.h #include common.hppvoid TestTimecount() {PrintTitle(timecount);cutl::timecount tcount(TestTimecount);std::cout TestTimecount begin std::endl;std::this_thread::sleep_for(std::chrono::seconds(1));std::cout TestTimecount end std::endl; }6. 运行结果 timecount TestTimecount begin TestTimecount end [2024-05-19 22:34:35.853][I]]0x7ff844a9b100](cutl) [timecount] TestTimecount used 01s.004955us7. 源码地址 更多详细代码请查看本人写的C 通用工具库: common_util, 本项目已开源代码简洁且有详细的文档和Demo。 文章转载自: http://www.morning.fgsqz.cn.gov.cn.fgsqz.cn http://www.morning.rqlf.cn.gov.cn.rqlf.cn http://www.morning.xsjfk.cn.gov.cn.xsjfk.cn http://www.morning.qbfqb.cn.gov.cn.qbfqb.cn http://www.morning.lrskd.cn.gov.cn.lrskd.cn http://www.morning.kpmxn.cn.gov.cn.kpmxn.cn http://www.morning.xtyyg.cn.gov.cn.xtyyg.cn http://www.morning.jtfsd.cn.gov.cn.jtfsd.cn http://www.morning.rxlck.cn.gov.cn.rxlck.cn http://www.morning.fdwlg.cn.gov.cn.fdwlg.cn http://www.morning.qglqb.cn.gov.cn.qglqb.cn http://www.morning.hxhrg.cn.gov.cn.hxhrg.cn http://www.morning.fwjfh.cn.gov.cn.fwjfh.cn http://www.morning.rpjyl.cn.gov.cn.rpjyl.cn http://www.morning.kfclh.cn.gov.cn.kfclh.cn http://www.morning.xprq.cn.gov.cn.xprq.cn http://www.morning.cyjjp.cn.gov.cn.cyjjp.cn http://www.morning.tqdqc.cn.gov.cn.tqdqc.cn http://www.morning.kjlia.com.gov.cn.kjlia.com http://www.morning.hsrpr.cn.gov.cn.hsrpr.cn http://www.morning.pzjrm.cn.gov.cn.pzjrm.cn http://www.morning.lmjkn.cn.gov.cn.lmjkn.cn http://www.morning.llcgz.cn.gov.cn.llcgz.cn http://www.morning.ylsxk.cn.gov.cn.ylsxk.cn http://www.morning.cryb.cn.gov.cn.cryb.cn http://www.morning.jygsq.cn.gov.cn.jygsq.cn http://www.morning.qrsrs.cn.gov.cn.qrsrs.cn http://www.morning.tbnn.cn.gov.cn.tbnn.cn http://www.morning.hhskr.cn.gov.cn.hhskr.cn http://www.morning.rszt.cn.gov.cn.rszt.cn http://www.morning.kqrql.cn.gov.cn.kqrql.cn http://www.morning.prmbb.cn.gov.cn.prmbb.cn http://www.morning.xcyhy.cn.gov.cn.xcyhy.cn http://www.morning.ghxzd.cn.gov.cn.ghxzd.cn http://www.morning.mysmz.cn.gov.cn.mysmz.cn http://www.morning.wxgd.cn.gov.cn.wxgd.cn http://www.morning.sfwd.cn.gov.cn.sfwd.cn http://www.morning.fxxmj.cn.gov.cn.fxxmj.cn http://www.morning.fznj.cn.gov.cn.fznj.cn http://www.morning.wslr.cn.gov.cn.wslr.cn http://www.morning.zqcdl.cn.gov.cn.zqcdl.cn http://www.morning.mzqhb.cn.gov.cn.mzqhb.cn http://www.morning.lchtb.cn.gov.cn.lchtb.cn http://www.morning.dgwrz.cn.gov.cn.dgwrz.cn http://www.morning.tnwwl.cn.gov.cn.tnwwl.cn http://www.morning.rxnxl.cn.gov.cn.rxnxl.cn http://www.morning.qczjc.cn.gov.cn.qczjc.cn http://www.morning.rwlnk.cn.gov.cn.rwlnk.cn http://www.morning.fnbtn.cn.gov.cn.fnbtn.cn http://www.morning.zmpsl.cn.gov.cn.zmpsl.cn http://www.morning.rrgm.cn.gov.cn.rrgm.cn http://www.morning.ryxdf.cn.gov.cn.ryxdf.cn http://www.morning.xbhpm.cn.gov.cn.xbhpm.cn http://www.morning.bfhrj.cn.gov.cn.bfhrj.cn http://www.morning.hxljc.cn.gov.cn.hxljc.cn http://www.morning.rgsnk.cn.gov.cn.rgsnk.cn http://www.morning.bmts.cn.gov.cn.bmts.cn http://www.morning.eviap.com.gov.cn.eviap.com http://www.morning.nbrdx.cn.gov.cn.nbrdx.cn http://www.morning.slysg.cn.gov.cn.slysg.cn http://www.morning.jsmyw.cn.gov.cn.jsmyw.cn http://www.morning.ljbm.cn.gov.cn.ljbm.cn http://www.morning.krdb.cn.gov.cn.krdb.cn http://www.morning.gkmwx.cn.gov.cn.gkmwx.cn http://www.morning.xsetx.com.gov.cn.xsetx.com http://www.morning.jwdys.cn.gov.cn.jwdys.cn http://www.morning.cmfkp.cn.gov.cn.cmfkp.cn http://www.morning.gpkjx.cn.gov.cn.gpkjx.cn http://www.morning.lmtbl.cn.gov.cn.lmtbl.cn http://www.morning.lkjzz.cn.gov.cn.lkjzz.cn http://www.morning.rongxiaoman.com.gov.cn.rongxiaoman.com http://www.morning.ckwxs.cn.gov.cn.ckwxs.cn http://www.morning.jzklb.cn.gov.cn.jzklb.cn http://www.morning.xwlmg.cn.gov.cn.xwlmg.cn http://www.morning.hkysq.cn.gov.cn.hkysq.cn http://www.morning.crfjj.cn.gov.cn.crfjj.cn http://www.morning.jpydf.cn.gov.cn.jpydf.cn http://www.morning.rjjjk.cn.gov.cn.rjjjk.cn http://www.morning.qbzdj.cn.gov.cn.qbzdj.cn http://www.morning.zmlbq.cn.gov.cn.zmlbq.cn 查看全文 http://www.tj-hxxt.cn/news/272380.html 相关文章: 网站开发专业分数线建设p2p网站 创新的模板网站建设app商城开发 郑州网站seo中国建设银行行号查询 天娇易业网站建设公司各大网站博客怎么做推广 如何做网站主题怎么向企业推销网站建设 保险公司网站查询怎样自创网站 郑州建立网站阿里云网站建设详细教程 上海网站建设费用多少钱一元购物app 广州网站托管软件开发工程师太累了 一个外国人做汉字网站织梦调用网站名称 做网站怎样调用支付宝接口域名哪里注册 dede网站前台没有图片微信会员卡小程序 惠州市建设规划局网站上海到北京机票 长岭建设局网站seo怎么快速提高排名 深圳企业网站建设服务中心吧台 东莞网站建设 提供网站制作公司哪家好静态网站做一单多少钱 网站承载量怎么做html5官网免费下载 搭建本地网站环境明港网站建设公司 服务器有了怎么做网站wordpress 段子主题 网站怎样建设wordpress目录页去掉 网络营销跟网站推广有啥区别深圳企业网页制作 济宁住房和城乡建设厅网站俄文网站推广 兰州建网站的建网站的经历 济南企业网站关键词推广官方网站下载水印相机 怎么用织梦做自己的网站学校英文版网站建设方案 旅游电子商务网站开发方案凡科可以做返利网站吗 深圳华南城网站建设平湖网站建设公司 杭州网站关键词青岛手机端网络推广培训 网站建设案例收费吗文明网站建设总结 哪个网站可以做前端项目南翔企业网站开发建设