1
在文件 「stl_alloc.h」在SGI STL的實現中,stl_alloc.h文件中模板參數「int inst」的功能是什麼?
類__malloc_alloc_template被定義爲
template <int inst>
class __malloc_alloc_template {
...
};
然而,在類, 「出師表」 從未被使用。那麼它的功能是什麼?謝謝!
在文件 「stl_alloc.h」在SGI STL的實現中,stl_alloc.h文件中模板參數「int inst」的功能是什麼?
類__malloc_alloc_template被定義爲
template <int inst>
class __malloc_alloc_template {
...
};
然而,在類, 「出師表」 從未被使用。那麼它的功能是什麼?謝謝!
該類包含一些靜態成員。通過使用不同的inst
值,您將獲得一組不同的靜態成員。