C++使用模版技术将任意类型的数据转为某个类型的数据

将任意类型(int, float, 自定义的数据类型等等)的数据转换的某个类型C中储存,可以通过

将类型C的构造函数写成模版函数的形式,在C中将可以接收任意类型数据。如:

class C
{

template <class T>
C(T& rData){};

template <class T>
C(T* pData){};

~C(){};

};

上一篇:大话NoSql


下一篇:centos7 selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH