如何强制模板参数 T 成为特定类 Baseclass 的子类?像这样:
How can I force a template parameter T to be a subclass of a specific class Baseclass?
Something like this:
template <class T : Baseclass> void function(){
T *object = new T();
}
在这种情况下你可以这样做:
In this case you can do:
template <class T> void function(){
Baseclass *object = new T();
}
如果 T 不是 Baseclass 的子类(或 T is Baseclass),这将不会编译.
This will not compile if T is not a subclass of Baseclass (or T is Baseclass).
这篇关于将 C++ 模板参数限制为子类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
std::reference_wrapper 和简单指针的区别?Difference between std::reference_wrapper and simple pointer?(std::reference_wrapper 和简单指针的区别?)
常量之间的区别.指针和引用?Difference between const. pointer and reference?(常量之间的区别.指针和引用?)
c++ - 如何从指向向量的指针访问向量的内容?How to access the contents of a vector from a pointer to the vector in C++?(c++ - 如何从指向向量的指针访问向量的内容?)
*& 的含义和**&在 C++ 中Meaning of *amp; and **amp; in C++(*amp; 的含义和**amp;在 C++ 中)
为什么我不能对普通变量进行多态?Why can#39;t I do polymorphism with normal variables?(为什么我不能对普通变量进行多态?)
取消引用已删除的指针总是会导致访问冲突?Dereferencing deleted pointers always result in an Access Violation?(取消引用已删除的指针总是会导致访问冲突?)