日志打印传值 传引用 右值引用性能测试(Linux/QNX)

embedded/2025/1/15 21:42:37/

结论

Linux平台和qnx平台优化后传值性能都是比传引用的差,也比传右值的差,因此传参时有必要传递引用。

测试代码

#include <cstdint>
#include <ctime>
#include <string>#ifdef __linux__#define ITERATIONS 10000000
#else#define ITERATIONS 100000
#endiftemplate <typename... ARGS_TYPE>
void my_log_value(const std::string &fmt_str, ARGS_TYPE... fmt_args) {printf(fmt_str.c_str(), fmt_args...);
}template <typename... ARGS_TYPE>
void my_log_reference(const std::string &fmt_str, ARGS_TYPE const &... fmt_args) {printf(fmt_str.c_str(), fmt_args...);
}template <typename... ARGS_TYPE>
void my_log_rvalue(const std::string &fmt_str, ARGS_TYPE &&... fmt_args) {printf(fmt_str.c_str(), std::forward<ARGS_TYPE>(fmt_args)...);
}int main() {// Test pass by valueuint64_t num64 = 1234567890;uint32_t num32 = 987654321;int32_t int32 = -12345;const char *str = "hello, world";char ch = 'A';float fl = 3.14159f;{clock_t startVal = clock();for (int i = 0; i < ITERATIONS; ++i) {my_log_value("value: %lu, %u, %d, %s, %c, %f\n", num64, num32, int32, str, ch, fl);}clock_t endVal = clock();double elapsedVal = static_cast<double>(endVal - startVal) / CLOCKS_PER_SEC;printf("Pass by value: %f seconds\n", elapsedVal);}{// Test pass by referenceclock_t startRef = clock();for (int i = 0; i < ITERATIONS; ++i) {my_log_reference("value: %lu, %u, %d, %s, %c, %f\n", num64, num32, int32, str, ch, fl);}clock_t endRef = clock();double elapsedRef = static_cast<double>(endRef - startRef) / CLOCKS_PER_SEC;printf("Pass by reference: %f seconds\n", elapsedRef);}{// Test pass by rvalue referenceclock_t startRValue = clock();for (int i = 0; i < ITERATIONS; ++i) {my_log_rvalue("value: %lu, %u, %d, %s, %c, %f\n", num64, num32, int32, str, ch, fl);}clock_t endRValue = clock();double elapsedRValue = static_cast<double>(endRValue - startRValue) / CLOCKS_PER_SEC;printf("Pass by rvalue: %f seconds\n", elapsedRValue);}return 0;
}

编译指令

+ Linux平台

编译: g++ -o test test.cpp -std=c++11 -O2

执行结果:
在这里插入图片描述

+ QNX 710

编译
/opt/qos222/host/linux/x86_64/usr/bin/aarch64-unknown-nto-qnx7.1.0-g++ -o test test.cpp -O2
执行结果:
在这里插入图片描述


http://www.ppmy.cn/embedded/40187.html

相关文章

Ansible---自动化运维工具

一、Ansible概述 1.1 Ansible简介 Ansible是一款自动化运维工具&#xff0c;通过ssh对目标主机进行配置、应用部署、任务执行、编排调度等操作。它简化了复杂的环境管理和自动化任务&#xff0c;提高了工作效率和一致性&#xff0c;同时&#xff0c;Ansible的剧本(playbooks)…

【Linux】基础命令:进程、网络

systemctl命令 控制内置服务 systemctl start | stop | status | enable | disable 服务名 start | stop开启关闭&#xff0c;status状态&#xff0c;enable | disable开启关闭开机自启 date命令 查看系统时间 date [-d] [格式化字符串] date -d “1 day” %Y-%m-%d 修改时区…

祝融传火(试水)

一段时间没写代码了&#xff0c;今天试水一道直接寄了 #include <bits/stdc.h> using namespace std; typedef long long ll; ll n, m, h, w; ll a[1010][1010]; int main() {cin >> n >> m;for (int i 1; i < n; i){for (int j 1; j < m; j){cin &…

No module named ‘sklearn.metrics.ranking‘ 解决方法

错误代码 from sklearn.metrics.classification import * from sklearn.metrics.ranking import * 错误原因 sklearn这个文件夹下的_classification和_ranking前面有下划线&#xff01; 解决方法 第一步&#xff1a;找到sklearn位置&#xff0c;可以打开命令行输入 pip sh…

思腾合力受邀参加VALSE 2024视觉与学习青年学者研讨会

在充满学术氛围的五月&#xff0c;思腾合力荣幸受邀参加了于2024年5月5-7日在重庆举行的第十四届VALSE大会。作为视觉与学习领域的顶级交流平台&#xff0c;VALSE大会每年都吸引着全国专家与学者的目光。 本次大会不仅延续了往届的高水平学术研讨&#xff0c;还进一步拓宽了研究…

jenkins自动打包部署

在Jenkins中&#xff0c;打包、发布和部署是一系列有序的过程&#xff0c;需要按照一定的步骤进行。下面我们将详细介绍每个步骤&#xff0c;并给出相应的操作建议。 一、下载和安装Jenkins 首先&#xff0c;您需要从Jenkins官网下载最新版本的Jenkins。Jenkins项目有两条发布线…

Redis7降级6备份不过期数据操作

Redis7降级6备份不过期数据操作 搜到三种备份方法 rdb版本11-》redis7;rdb版本9-》redis6&#xff1b;不兼容&#xff0c;版本太高无第三方工具转换。其中那个rdbtool白瞎断更好久了。aof 使用aof -fix&#xff0c;文件大小没变&#xff0c;读取不了数据&#xff1b;不兼容&a…

服务丢在tomcat中启动war包,需要在tomcat中配置Java环境吗?

一般来说&#xff0c;部署在 Tomcat 上的 WAR 包启动时不需要在 Tomcat 中单独配置 Java 环境&#xff0c;因为 Tomcat 启动本身就需要依赖 Java 环境。以下是确保 Tomcat 正常运行与部署 WAR 包的基本步骤&#xff1a; 安装 Java 环境&#xff1a; 首先&#xff0c;确保你的系…