C的哪些特性让模板类在没有模板参数的情况下引用自己?

前端之家收集整理的这篇文章主要介绍了C的哪些特性让模板类在没有模板参数的情况下引用自己?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
鉴于:
template <typename T>
class C {
    C & operator ++ () { ... }
};

为什么/如何允许C声明类型C的变量和函数而不是命名C< T>?在使用许多参数来模拟“自我类型”不方便的模板之前,我还没有真正考虑过它.

我应该知道这有什么怪癖吗?

解决方法

[n3290: 14.6.1/1]: Like normal (non-template) classes,class
templates have an injected-class-name (Clause 9)
. The
injected-class-name can be used as a template-name or a type-name.
When it is used with a template-argument-list,as a
template-argument for a template template-parameter,or as the final identifier in the elaborated-type-specifier of a friend class
template declaration,it refers to the class template itself.
Otherwise,it is equivalent to the template-name followed by the
template-parameters of the class template enclosed in <>.

表面上看,它只是一个方便的功能.

原文链接:https://www.f2er.com/c/111620.html

猜你在找的C&C++相关文章