在SGI STL的实现中,模板参数" int inst"的功能是什么?在文件stl_alloc.h中?

时间:2015-08-15 07:41:22

标签: c++ stl

在文件" stl_alloc.h"

class __malloc_alloc_template定义为

template <int inst>
class __malloc_alloc_template {
...
};

然而,在课堂上,&#34; inst&#34;从未使用过。那么它的功能是什么?谢谢!

1 个答案:

答案 0 :(得分:2)

该类包含一些静态成员。通过使用不同的inst值,您将获得一组不同的静态成员。