作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下两个函数用于将 std 容器转换为字符串以进行日志记录。
template <typename TCollection, std::string(*ToStringFunc)(typename TCollection::value_type)>
std::string LOG_COLLECTION(const TCollection& collection)
{
std::string as_str;
for (const auto& element : collection)
{
as_str += ToStringFunc(element) + " ";
}
return as_str;
}
template <typename TCollection>
std::string LOG_COLLECTION(const TCollection& collection)
{
return LOG_COLLECTION<TCollection, std::to_string>(collection);
}
我想要一个针对 std::string
容器的特化。类似于以下内容:
template <typename TCollection<std::string>>
std::string LOG_COLLECTION(const TCollection<std::string>& collection)
{
std::string as_str;
for (const auto& element : collection)
{
as_str += ToStringFunc(element) + " ";
}
return as_str;
}
int main()
{
std::vector<std::string> vec{ "a", "b", "c" };
std::string as_str = LOG_COLLECTION(vec)
}
我该怎么做(我使用的是 c++11
)?我尝试在网上搜索但没有找到解决方案。
最佳答案
喜欢 @Scheff 在评论中建议,你可以提供一个template template function specialization对于 std::string
s.
以下是示例代码:( See Online Live )
#include <iostream>
#include <vector>
#include <string>
// template alias for function pointer
template<template<class...> class TCollection, typename ValueType>
using FunctionPtrType = std::string(*)(typename TCollection<ValueType>::value_type);
// `LOG_COLLECTION` for the Container<non-std::string>
template <template<class...> class TCollection, typename ValueType>
std::string LOG_COLLECTION(const TCollection<ValueType>& collection,
FunctionPtrType<TCollection, ValueType> ToStringFunc)
{
std::string as_str;
for (const ValueType element : collection) {
as_str += ToStringFunc(element) + " ";
}
return as_str;
}
// `LOG_COLLECTION` for the Container<std::string>
template <template<class...> class TCollection, typename... Args>
std::string LOG_COLLECTION(const TCollection<std::string, Args...>& collection)
{
std::string as_str;
for (const auto& element : collection) {
as_str += (element + " ");
}
return as_str;
}
int main()
{
std::vector<int> vec{ 1, 2, 3 };
// call the Container<non-std::string> like
std::string as_str = LOG_COLLECTION(vec,
[](int val) { return ::std::to_string(val); });
std::vector<std::string> vec2{ "1", "2", "3" };
std::string as_str2 = LOG_COLLECTION(vec2); // call with no `ToString` function!
}
或者 SFINAE(“替换失败不是错误”)LOG_COLLECTION
函数如下:
( See Online Live )
#include <type_traits> // std::integral_constant, std::is_same, std::enable_if
// traits for checking the `value_type == std::string`
template<class Container> struct has_std_string_value_type final
: public std::integral_constant<bool, std::is_same<std::string, typename Container::value_type>::value>
{};
// template alias for function pointer
template<typename TCollection>
using FunctionPtrType = std::string(*)(typename TCollection::value_type);
// for the Container<non-std::string>
template <typename TCollection>
auto LOG_COLLECTION(const TCollection& collection, FunctionPtrType<TCollection> ToStringFunc)
-> typename std::enable_if<! has_std_string_value_type<TCollection>::value, std::string>::type
{
std::string as_str;
for (const auto element : collection) {
as_str += ToStringFunc(element) + " ";
}
return as_str;
}
// for the Container<std::string>
template <typename TCollection>
auto LOG_COLLECTION(const TCollection& collection)
-> typename std::enable_if<has_std_string_value_type<TCollection>::value, std::string>::type
{
std::string as_str;
for (const auto& element : collection) {
as_str += (element + " ");
}
return as_str;
}
关于c++ - Container::value_type 的模板特化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62893715/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
正如您在 this travis.yml 中看到的那样文件,我的代码依赖于一些第三方库,我在构建项目之前将它们安装在远程系统上。 Travis 每次推送提交时都会下载并构建这些库,这可以避免吗?我的意
我是一名优秀的程序员,十分优秀!