您的位置:首页 > 其它

类型萃取

2017-08-03 11:31 127 查看
#include<iostream>
#include<stdlib.h>
#include<string.h>
using namespace std;
class Truetype
{
public:
bool Get()
{
return true;
}
};
class Falsetype
{
public:
bool Get()
{
return false;
}
};
template<class T>
class TypeTraits
{
public:
typedef Falsetype IsPOD;
};
template<>
class TypeTraits<int>
{
public:
typedef Truetype IsPOD;
};
template<>
class TypeTraits<char>
{
typedef Truetype IsPOD;
};
template<>
class TypeTraits<short>
{
public:
typedef Truetype IsPOD;
};
//使用参数推导的萃取处理
template<class T>
void _COPY(T*dst,T*src,size_t size,Truetype)
{
cout<<"TureType:" <<typeid( T).name ()<<endl;

memcpy(dst,src,size*sizeof(T));
}
template<class T>
void _COPY(T*dst,T*src,size_t size,Falsetype)
{
cout<<"FalseType:" <<typeid( T).name ()<<endl;

for(i=0;i<size;++i)
{
dst[i]=src[i];
}
}
//使用萃取判断类型的Get函数判断是否是 POD类型来处理
template<class T>
void _COPY(T*dst,T*src,size_t size)
{
cout<<"TrueType:" <<typeid( T).name ()<<endl;
if(TypeTraits<T>::IsPOD().Get())
{
memcpy(dst,src,size*sizeof(T));
}
else
{
for(int i=0;i<size;++i)
{
dst[i]=src[i];
}
}
}
void main()
{
int arr[10]={1,2,3,4,5};
int arr1[10]={};
string s1[10]={"ab","abc","bc"};
string s2[10]={};
/*_COPY(arr1,arr,10,TypeTraits<int>::IsPOD());*/
_COPY(arr1,arr,10);
for(int i=0;i<10;++i)
{
cout<<arr1[i];
}
_COPY(s2,s1,10);

system("pause");
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: