可优先使用std::string_view作为函数入参

2024-03-29 00:36

本文主要是介绍可优先使用std::string_view作为函数入参,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

如下的代码,当只提供入参是std::string的版本时,当传入const char*时会构造一个std::string对象。

#include <iostream>
#include <format>
#include <string>
#include <string_view>
#include <iomanip>void print(const std::string& str){std::cout << "**version1**, " << __func__ << ", " << str << std::endl;
}/*void print(const char* str){std::cout << "--version2--, " << __func__ << ", " << str << std::endl;
}void print(const std::string_view str){std::cout << "==version3==, " << __func__ << ", " << str << std::endl;
}*/auto main()->int{const char* ch = "const char*";std::string str("std::string");print(ch);   // **version1**, print, const char*print(str);  // **version1**, print, std::string
}

可以提供重载的print来避免上述问题,不过会增加代码量。

#include <iostream>
#include <format>
#include <string>
#include <string_view>
#include <iomanip>void print(const std::string& str){std::cout << "**version1**, " << __func__ << ", " << str << std::endl;
}void print(const char* str){std::cout << "--version2--, " << __func__ << ", " << str << std::endl;
}/*void print(const std::string_view str){std::cout << "==version3==, " << __func__ << ", " << str << std::endl;
}*/auto main()->int{const char* ch = "const char*";std::string str("std::string");print(ch);   // --version2--, print, const char*print(str);  // **version1**, print, std::string
}

而使用std::string_view作为入参可以同时兼容入参是std::string和const char*的情况。

#include <iostream>
#include <format>
#include <string>
#include <string_view>
#include <iomanip>/*void print(const std::string& str){std::cout << "**version1**, " << __func__ << ", " << str << std::endl;
}void print(const char* str){std::cout << "--version2--, " << __func__ << ", " << str << std::endl;
}*/void print(const std::string_view str){std::cout << "==version3==, " << __func__ << ", " << str << std::endl;
}auto main()->int{const char* ch = "const char*";std::string str("std::string");print(ch);   // ==version3==, print, const char*print(str);  // ==version3==, print, std::string
}

但是当三个版本的print都提供时编译器还是会进行最佳匹配。

#include <iostream>
#include <format>
#include <string>
#include <string_view>
#include <iomanip>void print(const std::string& str){std::cout << "**version1**, " << __func__ << ", " << str << std::endl;
}void print(const char* str){std::cout << "--version2--, " << __func__ << ", " << str << std::endl;
}void print(const std::string_view str){std::cout << "==version3==, " << __func__ << ", " << str << std::endl;
}auto main()->int{const char* ch = "const char*";std::string str("std::string");print(ch);   // --version2--, print, const char*print(str);  // **version1**, print, std::string
}

这篇关于可优先使用std::string_view作为函数入参的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/857136

相关文章

如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件

《如何使用Docker部署FTP和Nginx并通过HTTP访问FTP里的文件》本文介绍了如何使用Docker部署FTP服务器和Nginx,并通过HTTP访问FTP中的文件,通过将FTP数据目录挂载到N... 目录docker部署FTP和Nginx并通过HTTP访问FTP里的文件1. 部署 FTP 服务器 (

MySQL 日期时间格式化函数 DATE_FORMAT() 的使用示例详解

《MySQL日期时间格式化函数DATE_FORMAT()的使用示例详解》`DATE_FORMAT()`是MySQL中用于格式化日期时间的函数,本文详细介绍了其语法、格式化字符串的含义以及常见日期... 目录一、DATE_FORMAT()语法二、格式化字符串详解三、常见日期时间格式组合四、业务场景五、总结一、

Python中配置文件的全面解析与使用

《Python中配置文件的全面解析与使用》在Python开发中,配置文件扮演着举足轻重的角色,它们允许开发者在不修改代码的情况下调整应用程序的行为,下面我们就来看看常见Python配置文件格式的使用吧... 目录一、INI配置文件二、YAML配置文件三、jsON配置文件四、TOML配置文件五、XML配置文件

Go使用pprof进行CPU,内存和阻塞情况分析

《Go使用pprof进行CPU,内存和阻塞情况分析》Go语言提供了强大的pprof工具,用于分析CPU、内存、Goroutine阻塞等性能问题,帮助开发者优化程序,提高运行效率,下面我们就来深入了解下... 目录1. pprof 介绍2. 快速上手:启用 pprof3. CPU Profiling:分析 C

MySQL InnoDB引擎ibdata文件损坏/删除后使用frm和ibd文件恢复数据

《MySQLInnoDB引擎ibdata文件损坏/删除后使用frm和ibd文件恢复数据》mysql的ibdata文件被误删、被恶意修改,没有从库和备份数据的情况下的数据恢复,不能保证数据库所有表数据... 参考:mysql Innodb表空间卸载、迁移、装载的使用方法注意!此方法只适用于innodb_fi

Python中conda虚拟环境创建及使用小结

《Python中conda虚拟环境创建及使用小结》本文主要介绍了Python中conda虚拟环境创建及使用小结,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们... 目录0.前言1.Miniconda安装2.conda本地基本操作3.创建conda虚拟环境4.激活c

Spring中@Lazy注解的使用技巧与实例解析

《Spring中@Lazy注解的使用技巧与实例解析》@Lazy注解在Spring框架中用于延迟Bean的初始化,优化应用启动性能,它不仅适用于@Bean和@Component,还可以用于注入点,通过将... 目录一、@Lazy注解的作用(一)延迟Bean的初始化(二)与@Autowired结合使用二、实例解

SpringBoot使用Jasypt对YML文件配置内容加密的方法(数据库密码加密)

《SpringBoot使用Jasypt对YML文件配置内容加密的方法(数据库密码加密)》本文介绍了如何在SpringBoot项目中使用Jasypt对application.yml文件中的敏感信息(如数... 目录SpringBoot使用Jasypt对YML文件配置内容进行加密(例:数据库密码加密)前言一、J

Spring Boot 中正确地在异步线程中使用 HttpServletRequest的方法

《SpringBoot中正确地在异步线程中使用HttpServletRequest的方法》文章讨论了在SpringBoot中如何在异步线程中正确使用HttpServletRequest的问题,... 目录前言一、问题的来源:为什么异步线程中无法访问 HttpServletRequest?1. 请求上下文与线

golang panic 函数用法示例详解

《golangpanic函数用法示例详解》在Go语言中,panic用于触发不可恢复的错误,终止函数执行并逐层向上触发defer,最终若未被recover捕获,程序会崩溃,recover用于在def... 目录1. panic 的作用2. 基本用法3. recover 的使用规则4. 错误处理建议5. 常见错