c++ template实例化

class template 实例化

实例化包括两种类型,隐式实例化,显示实例化

template的定义是什么

template的定义在编译过程中什么都不会生成,既不是类型,也不是对象,仅仅是声明。

显示实例化

语法:

template class name < argument-list > ;

这样的实例化,仅仅是定义了class,class的成员函数,以及函数的定义都没有实例化。

隐式实例化

只有在用到该类型或对象时,才会实例化

example

template<class T> struct Z {
    void f() {}
    void g(); // never defined
}; // template definition
template struct Z<double>; // explicit instantiation of Z<double>
Z<int> a; // implicit instantiation of Z<int>
Z<char>* p; // nothing is instantiated here
p->f(); // implicit instantiation of Z<char> and Z<char>::f() occurs here.
// Z<char>::g() is never needed and never instantiated: it does not have to be defined
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值