萃取(traits)技术概念、范例等

一、类型萃取范例

1.通过萃取接口中的 value 值为true,false 我们就可以萃取出很多有用的信息。

#include <iostream>
#include <future>
#include <vector>
#include <map>
#include <functional>
#include <string>
#include <algorithm>
#include <ctime>
#include <initializer_list>
#include <stdarg.h>
#include <list>

using namespace std;

template <typename T>
void printTraitsInfo(const T& t)
{
	cout << "我们要萃取的名字是 :" << typeid(T).name() << endl;
	cout << "is_void = " << is_void<T>::value << endl;  //类型是否是void
	cout << "is_calss = " << is_class<T>::value << endl; //类型是否是class
	cout << "is_object = " << is_object<T>::value << endl; //类型是否是object
	cout << "is_pod = " << is_pod<T>::value << endl; // 是否是普通类(只包含成员变量,不包含成员函数)
	cout << "is_default_constructible =" << is_default_constructible<T>::value << endl;  // 缺省构造函数
	cout << "is_copy_constructible =" << is_copy_constructible<T>::value << endl;      // 拷贝构造函数
	cout << "is_move_constructible =" << is_move_constructible<T>::value << endl;      //移动构造函数
	cout << "is_destructible = " << is_destructible<T>::value << endl;                //析构函数
	cout << "is_polymorphic = " << is_polymorphic<T>::value << endl;                //虚函数
	cout << "is_trivially_default_constructible = " << is_trivially_default_constructible<T>::value << endl; //缺省拷贝构造函数
	cout << "has_virtual_destructor = " << has_virtual_destructor<T>::value << endl;            //虚析构函数

}

class A
{
public:
	A() = default;
	A(A&& ta) = delete;
	A(const A& ta) = delete;
	virtual ~A() {}
};

class B
{
public:
	int m_i;
	int m_j;
};

class C
{
public:
	C(int t) {}
};

void func()
{
	printTraitsInfo(int());  //扔一个零食对象进去
	printTraitsInfo(string());
	printTraitsInfo(A());
	printTraitsInfo(B());
	printTraitsInfo(C(1));
	printTraitsInfo(list<int>());
}

int main()
{
	
	func();
	

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

repinkply

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值