当前位置:首页 > 单片机 > 程序喵大人


type_traits在C++中是非常有用的技巧,可以说如果不懂type_traits,那根本看不懂stl相关代码,最近对type_traits比较感兴趣,于是找到了gcc的type_traits源码通读了一遍,总结一下。

type_traits称为类型萃取技术,主要用于编译期获取某一参数、某一变量、某一个类等等任何C++相关对象的类型,以及判断他们是否是某个类型,两个变量是否是同一类型,是否是标量、是否是引用、是否是指针、是左值还是右值,还可以将某个为某个类型去掉cv(const volitale)属性或者增加cv属性等等。


SFINAE

SFINAE技术,Substitution Failure is Not An Error,在编译期编译时,会将函数模板的形参替换为实参,如果替换失败编译器不会当作是个错误,直到找到那个最合适的特化版本,如果所有的模板版本都替换失败那编译器就会报错,以std::enable_if举个例子。

#include
#include

using std::cout;
using std::endl;

template
auto func(T t) -> std::enable_if_t::value, int>
{
 cout << "int" << endl;
}

template
auto func(T t) -> std::enable_if_t::value, double>
{
 cout << "double" << endl;
}

int main()
{
 int a = 1;
 double b = 2.9;
 func(a);
 func(b);

 // float c = 34.5;
 // func(c);

 return 0;
}

编译运行:g++ test.cc -std=c++14; ./a.out
int
double

注释部分的代码如果打开就会编译失败,代码中明确规定了func函数只接收类型为int和double的参数,向func中传入其它类型参数编译器则会报错。

通过SFINAE技术可以完成很多有趣的事,比如根据参数类型做不同的定制化操作。


type_traits原理

type_traits最核心的结构体应该就是integral_constant,它的源代码如下:

template
 struct integral_constant
 {
 static constexpr _Tp                  value = __v;
 typedef _Tp                           value_type;
 typedef integral_constant<_Tp, __v>   type;
 constexpr operator value_type() const noexcept { return value; }
 constexpr value_type operator()() const noexcept { return value; }
 };

 typedef integral_constant     true_type;
 typedef integral_constant    false_type;

基本上type_traits的每个功能都会使用到true_type和false_type,后续会介绍,这里先介绍代码中那两个operator函数的具体含义,operator type() const用于类型转换,而type operator()() const用于仿函数,见代码。

#include
#include

using std::cout;
using std::endl;

class Test
{
public:
 operator int() const
 {
 cout << "operator type const " << endl;
 return 1;
 }

 int operator()() const
 {
 cout << "operator()()" << endl;
 return 2;
 }
};

int main()
{
 Test t;
 int x(t);
 int xx = t;
 t();
 return 0;
}

编译运行:g++ test.cc; ./a.out
operator type const
operator type const
operator()()

还有个主要的模板是conditional

template
 struct conditional;

 template
 struct conditional
 { typedef _Iftrue type; };

 // Partial specialization for false.
 template
 struct conditional
 { typedef _Iffalse type; };

当模板的第一个参数为true时type就是第二个参数的类型,当第一个参数为false时type就是第三个参数的类型,通过conditional可以构造出or and等功能,类似我们平时使用的带短路功能的|| &&,具体实现如下:

template
 struct conditional;

 template
 struct __or_;

 template<>
 struct __or_<>
 : public false_type
 { };

 template
 struct __or_
 : public _B1
 { };

 template
 struct __or_<_B1, _B2>
 : public conditional<_B1::value, _B1, _B2>::type
 { };

 template
 struct __or_<_B1, _B2, _B3, _Bn...>
 : public conditional<_B1::value, _B1, __or_<_B2, _B3, _Bn...>>::type
 { };

 template
 struct disjunction
 : __or_<_Bn...>
 { };

通过disjunction可以实现析取功能,type为B1, B2, B…中第一个value为true的类型。

// cpp reference中的示例代码
struct Foo {
 template
 struct sfinae_unfriendly_check {
 static_assert(!std::is_same_v);
 };

 template
 Foo(T, sfinae_unfriendly_check= {});
};

template 
struct first_constructible {
 template 
 struct is_constructible_x : std::is_constructible {
 using type = T;
 };
 struct fallback {
 static constexpr bool value = true;
 using type = void;  // type to return if nothing is found
 };

 template 
 using with = typename std::disjunction..., fallback>::type;
};

// OK, is_constructible not instantiated
static_assert(std::is_same_v::with, int>);

static_assert(std::is_same_v::with<>, std::string>);
static_assert(std::is_same_v::with, std::string>);
static_assert(std::is_same_v::with, void>);

再看看conjunction的实现

template
 struct __and_;

 template<>
 struct __and_<>
 : public true_type
 { };

 template
 struct __and_
 : public _B1
 { };

 template
 struct __and_<_B1, _B2>
 : public conditional<_B1::value, _B2, _B1>::type
 { };

 template
 struct __and_<_B1, _B2, _B3, _Bn...>
 : public conditional<_B1::value, __and_<_B2, _B3, _Bn...>, _B1>::type
 { };

 template
 struct conjunction
 : __and_<_Bn...>
 { };

通过conjunction可以判断函数的参数类型是否相同,代码如下:

#include
#include

// func is enabled if all Ts... have the same type as T
template 
std::enable_if_t...>> func(T, Ts...) {
 std::cout << "all types in pack are T\n";
}

// otherwise
template 
std::enable_if_t...>> func(T, Ts...) {
 std::cout << "not all types in pack are T\n";
}

int main() {
 func(1, 2, 3);
 func(1, 2, "hello!");
}

输出:
all types in pack are T
not all types in pack are T

再举一些平时用的很多的例子,还可以判断某个类型是否有const属性,添加去除某个类型的左值引用或者右值引用,添加去除某个类型的const或者volatile。

#include
#include

int main()
{
 std::cout << std::boolalpha;
 std::cout << std::is_const::value << '\n'; // false
 std::cout << std::is_const::value  << '\n'; // true
 std::cout << std::is_const::value  << '\n'; // false
 std::cout << std::is_const::value  << '\n'; // true
 std::cout << std::is_const::value  << '\n'; // false
}

is_const实现很简单,就是利用模板匹配特性,其它的is_volatile等类似

template
 struct is_const
 : public false_type { };

 template
 struct is_const
 : public true_type { };

is_same的实现如下:

template
 struct is_same
 : public false_type { };

 template
 struct is_same<_Tp, _Tp>
 : public true_type { };

包括移除引用的功能, remove_reference

/// remove_reference
 template
 struct remove_reference
 { typedef _Tp   type; };

 template
 struct remove_reference<_Tp&>
 { typedef _Tp   type; };

 template
 struct remove_reference<_Tp&&>
 { typedef _Tp   type; };

 // C++14之后这种xxx_t=xxx::type
 template
 using remove_reference_t = typename remove_reference::type;

add_const, add_volatile, add_cv等的实现

template
 struct add_const
 { typedef _Tp const     type; };

 /// add_volatile
 template
 struct add_volatile
 { typedef _Tp volatile     type; };

 /// add_cv
 template
 struct add_cv
 {
 typedef typename
 add_const::type     type;
 };
本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除。
关闭