C++ template typename 和 class 的区别

在比较基础的情况,typenameclass 是可以交换的,也就是没什么差别:


template<class T>
class Foo
{
};


template<typename T>
class Foo
{
};

是等价的。
但也意味着,有些特殊的情况typenameclass 是有区别的。

The first one is in the case of dependent types. typename is used to declare when you are referencing a nested type that depends on another template parameter, such as the typedef in this example:

template
class Foo
{
typedef typename param_t::baz sub_t;
};
The second one you actually show in your question, though you might not realize it:

template < template < typename, typename > class Container, typename Type >
When specifying a template template, the class keyword MUST be used as above -- it is not interchangeable with typename in this case (note: since C++17 both keywords are allowed in this case).

You also must use class when explicitly instantiating a template:

template class Foo;
I'm sure that there are other cases that I've missed, but the bottom line is: these two keywords are not equivalent, and these are some common cases where you need to use one or the other.

原文链接: https://www.cnblogs.com/drunknbeard/p/12821054.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    C++ template typename 和 class 的区别

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/345955

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月2日 上午3:33
下一篇 2023年3月2日 上午3:33

相关推荐