我想知道是否可以检测模板类容器类型,并重新定义其参数。例如:
typedef std::vector<int> vint;
typedef typeget<vint>::change_param<double> vdouble;
vdouble现在是std::vector<double>
?
答案 0 :(得分:10)
添加@Kerrek SB的答案,这是通用的方法:
((App)Application.Current).setting_1
适用于阳光下的任何容器。
答案 1 :(得分:7)
是的,您可以使用部分特化来制作一个简单的模板重新绑定器:
#include <memory>
#include <vector>
template <typename> struct vector_rebinder;
template <typename T, typename A>
struct vector_rebinder<std::vector<T, A>>
{
template <typename U>
using rebind =
std::vector<U,
typename std::allocator_traits<A>::template rebind_alloc<U>>;
};
用法:
using T1 = std::vector<int>;
using T2 = vector_rebinder<T1>::rebind<double>;
现在T2
是std::vector<double>
。