模板是什么意思?在 C++ 中使用空尖括号?

What is the meaning of templatelt;gt; with empty angle brackets in C++?(模板是什么意思?在 C++ 中使用空尖括号?)
本文介绍了模板是什么意思?在 C++ 中使用空尖括号?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

template<>
class A{
//some class data
};

这种代码我见过很多次了.上面代码中template<>的作用是什么?在哪些情况下我们需要强制使用它?

I have seen this kind of code many times. what is the use of template<> in the above code? And what are the cases where we need mandate the use of it?

推荐答案

template<> 告诉编译器遵循模板特化,特别是完全特化.通常,class A 应该是这样的:

template<> tells the compiler that a template specialization follows, specifically a full specialization. Normally, class A would have to look something like this:

template<class T>
class A{
  // general implementation
};

template<>
class A<int>{
  // special implementation for ints
};

现在,每当使用 A 时,都会使用专用版本.你也可以用它来专门化函数:

Now, whenever A<int> is used, the specialized version is used. You can also use it to specialize functions:

template<class T>
void foo(T t){
  // general
}

template<>
void foo<int>(int i){
  // for ints
}

// doesn't actually need the <int>
// as the specialization can be deduced from the parameter type
template<>
void foo(int i){
  // also valid
}

通常情况下,你不应该专门化函数,因为简单的重载通常被认为是优越的:

Normally though, you shouldn't specialize functions, as simple overloads are generally considered superior:

void foo(int i){
  // better
}

<小时>

现在,为了让它显得矫枉过正,以下是一个部分专业化:

template<class T1, class T2>
class B{
};

template<class T1>
class B<T1, int>{
};

与完全特化的工作方式相同,只是当第二个模板参数是 int(例如,BB 等).

Works the same way as a full specialization, just that the specialized version is used whenever the second template parameter is an int (e.g., B<bool,int>, B<YourType,int>, etc).

这篇关于模板是什么意思?在 C++ 中使用空尖括号?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do compilers treat variable length arrays(编译器如何处理变长数组)
Deduce template argument from std::function call signature(从 std::function 调用签名推导出模板参数)
check if member exists using enable_if(使用 enable_if 检查成员是否存在)
Standard Library Containers with additional optional template parameters?(具有附加可选模板参数的标准库容器?)
Uses of a C++ Arithmetic Promotion Header(C++ 算术提升标头的使用)
Parameter pack must be at the end of the parameter list... When and why?(参数包必须位于参数列表的末尾...何时以及为什么?)