typename前缀
C++默认用::访问的名称不是类,因此必须加上typename前缀,告诉编译器该名字是一个类型,否则会报错
template<typename T>
void print(const T& c)
{
typename T::const_iterator pos; // 必须加上typename前缀
typename T::const_iterator end(c.end());
for (pos = c.begin(); pos! = end; ++pos) std::cout << *pos << ' ';
}
这个模板使用T类型容器的迭代器,每个STL容器都声明了迭代器类型const_iterator
class Cont {
public:
using iterator = ...; // iterator for read/write access
using const_iterator = ...; // iterator for read access
...
};
必须加typename前缀的原因,参考如下代码
T::SubType* ptr;
如果没有加typename前缀,上式会被解析为一个乘法,而不是声明一个指针
(T::SubType) * ptr;
零初始化
使用模板时常希望模板类型的变量已经用默认值初始化,但内置类型无法满足要求
template<typename T>
void f()
{
T x; // T为内置类型则不会初始化
}
解决方法是显式调用内置类型的默认构造函数,比如调用int()即可获得0
template<typename T>
void f()
{
T x{}; // T为内置类型则x为0(或false)
// C++11前的语法写为T x = T();
}
对于类模板则需要定义一个保证所有成员都初始化的默认构造函数
template<typename T>
class A {
private:
T x;
public:
A() : x() {} // 确保x已被初始化,即使是内置类型
};
C++11中可以写为
template<typename T>
class A {
private:
T x{};
};
但默认实参不能这样写
template<typename T>
void f(T p{}) // 错误
{}
正确的写法是
template<typename T>
void f(T p = T{}) // OK,如果是C++11前则用T()
{}
派生类模板调用基类同名函数
- 对于派生类模板,调用基类的同名函数时,并不一定是使用基类的此函数
```cpp
template
class B { public: void f(); };
template
- 这里`f2()`内部调用的`f()`不会考虑基类的`f()`,如果希望调用基类的,有三种做法,一是明确指定`B<T>::f()`指定来调用基类函数
```cpp
template<typename T>
class B {
public:
void f();
};
template<typename T>
class D : public B<T> {
public:
void f2() { B<T>::f(); }
};
- 这种做法的一个缺点是,
f()
是虚函数时也只能调用基类的f()
```cpp templateclass B { public: virtual void f() { std::cout << 1; } };
template
D
- 另外两种不会引起此问题的做法是使用`this->`或using声明
```cpp
template<typename T>
class D : public B<T> {
public:
void f2() { this->f(); }
};
template<typename T>
class D : public B<T> {
public:
using B<T>::f;
void f2() { f(); }
};
用于原始数组与字符串字面值的模板
- 有时把原始数组或字符串字面值传递给函数模板的引用参数会出现问题
```cpp
template
const T& max(const T& a, const T& b) { return a < b ? b : a; }
::max(“apple”, “peach”); // OK ::max(“apple”, “banana”); // 错误:类型不同,分别是const char[6]和const char[7]
- 模板参数为引用类型时,传递的原始数组不会退化为指针。将上述模板改为传值即可编译,非引用类型实参在推断过程中会出现数组到指针的转换,但这样比较的实际是指针的地址
```cpp
template<typename T>
T max(T a, T b)
{
return a < b ? b : a;
}
std::cout << ::max("apple", "banana"); // apple
std::cout << ::max("cpple", "banana"); // cpple
- 因此需要为原始数组和字符串字面值提供特定处理的模板
```cpp
template
bool less (T(&a)[N], T(&b)[M]) { for (int i = 0; i < N && i < M; ++i) { if (a[i] < b[i]) return true; if (b[i] < a[i]) return false; } return N < M; }
int x[] = {1, 2, 3}; int y[] = {1, 2, 3, 4, 5}; std::cout << less(x, y); // true:T = int, N = 3,M = 5 std::cout << less(“ab”, “abc”); // true:T = const char, N = 3,M = 4
- 如果只想支持字符串字面值,将模板参数T直接改为const char即可
```cpp
template<int N, int M>
bool less(const char(&a)[N], const char(&b)[M])
{
for (int i = 0; i < N && i < M; ++i)
{
if (a[i] < b[i]) return true;
if (b[i] < a[i]) return false;
}
return N < M;
}
template
template
template
template
template
template
template
int main()
{
int a[42];
A
int x[] = {1, 2, 3}; // 定义前置声明的数组
// 输出为 print() for T[42] print() for T[] print() for T print() for T print() for T(&)[42] print() for T(&)[] print() for T* print() for T(&)[] print() for T(&)[]
<a name="4698e594"></a>
## 成员模板
- 类的成员也可以是模板,嵌套类和成员函数都可以是模板
- 正常情况下不能用不同类型的类互相赋值
```cpp
Stack<int> s1, s2;
Stack<double> s3;
s1 = s2; // OK:类型相同
s3 = s1; // 错误:类型不同
定义一个赋值运算符模板来实现不同类型的赋值 ```cpp template
class Stack { public: void push(const T&); void pop(); const T& top() const; bool empty() const { return v.empty(); } template
Stack& operator=(const Stack&); private: std::deque v; };
template
template
template
template
- 为了获取用来赋值的源对象所有成员的访问权限,可以把其他的stack实例声明为友元
```cpp
template <typename T>
class Stack {
private:
std::deque<T> v;
public:
void push(const T&);
void pop();
const T& top() const;
bool empty() const { return v.empty(); }
template <typename U>
Stack& operator=(const Stack<U>&);
// 声明友元以允许Stack<U>访问Stack<T>的私有成员
template <typename> // U没被使用所以这里省略
friend class Stack;
};
有了这个成员模板,就能允许不同元素类型的Stack互相赋值
Stack<int> s1; Stack<double> s2; s2 = s1; // OK
不用担心可以给stack赋值任何类型,这行代码保证了类型检查
v.emplace_front(tmp.top());
因此可以避免把一个stringStack赋值给一个intStack
Stack<std::string> s1; Stack<int> s2; s2 = s1; // 错误:std::string不能转换为int
用成员模板参数化容器类型
template<typename T, typename Cont = std::deque<T>>
class Stack {
public:
void push(const T&);
void pop();
const T& top() const;
bool empty() const { return v.empty(); }
template<typename T2, typename Cont2>
Stack& operator= (const Stack<T2, Cont2>&);
// operator=中要访问begin、end等私有成员,必须声明友元
template<typename, typename>
friend class Stack;
private:
Cont v;
};
template<typename T, typename Cont>
void Stack<T, Cont>::push(const T& x)
{
v.emplace_back(x);
}
template<typename T, typename Cont>
void Stack<T, Cont>::pop()
{
assert(!v.empty());
v.pop_back();
}
template<typename T, typename Cont>
const T& Stack<T, Cont>::top() const
{
assert(!v.empty());
return v.back();
}
template<typename T, typename Cont>
template<typename T2, typename Cont2>
Stack<T, Cont>& Stack<T, Cont>::operator=(const Stack<T2, Cont2>& rhs)
{
v.clear();
v.emplace(v.begin(), rhs.v.begin(), rhs.v.end());
return *this;
}
这样实现更方便,但也可以按之前的写法实现
template<typename T, typename Cont> template<typename T2, typename Cont2> Stack<T, Cont>& Stack<T, Cont>::operator=(const Stack<T2, Cont2>& rhs) { v.clear(); Stack<T2, Cont2> tmp(rhs); v.clear(); while (!tmp.empty()) { v.emplace_front(tmp.top()); tmp.pop(); } return *this; }
如果使用这个实现,可以利用成员函数在被调用时才会被实例化的特性,来禁用赋值运算符。使用一个std::vector作为内部容器,因为赋值运算符中使用了emplace_front,而std::vector没有此成员函数,只要不使用赋值运算符,程序就能正常运行
Stack<int, std::vector<int>> s; s.push(42); s.push(1); std::cout << s.top(); // 1 Stack<int> s2; s = s2; // 错误:不能对s使用operator=
成员模板的特化
- 成员函数模板也能偏特化或全特化
```cpp
class A {
public:
A(const std::string& x) : s(x) {}
template
T get() const { return s; } private: std::string s; };
// bool类型的全特化
template<>
inline bool A::get
int main()
{
std::cout << std::boolalpha;
A a(“hello”);
std::cout << a.get() << ‘\n’; // hello
std::cout << a.get
<a name="tqsoz"></a>
## 泛型lambda和成员模板
- lambda其实是成员模板的简写
```cpp
[] (auto x, auto y) {
return x + y;
}
// 等价于如下类的一个默认构造对象,即X{}
class X {
public:
X(); // 此构造函数只能被编译器调用
template<typename T1, typename T2>
auto operator()(T1 x, T2 y) const
{
return x + y;
}
};
使用.template
- 有时调用一个成员模板,显式限定模板实参是有必要的,此时必须使用template关键字来确保
<
是模板实参列表的开始。下面这个例子中,如果没有template,编译器就不知道<
是小于号还是模板实参列表的开始template<unsigned long N> void f(const std::bitset<N>& b) { std::cout << b.template to_string<char, std::char_traits<char>, std::allocator<char>>(); // .template只需要用于依赖于模板参数的名称之后,比如这里的b依赖于模板参数N }
变量模板(Variable Template)
C++14中,变量也能被参数化为一个具体类型。和所有模板一样,这个声明不应该出现在函数或局部作用域内
template<typename T> constexpr T pi{3.1415926535897932385};
使用一个变量模板必须指定类型
std::cout << pi<double> << '\n';
可以在不同的编译单元中声明变量模板 ```cpp // header.hpp: template
T x{}; // 零初始化值
// translation unit 1:
include “header.hpp”
int main()
{
x
// translation unit 2:
include “header.hpp”
void print()
{
std::cout << x
- 变量模板也能有默认模板实参
```cpp
template<typename T = long double>
constexpr T pi = T{3.1415926535897932385};
std::cout << pi<> << '\n'; // outputs a long double
std::cout << pi<double> << '\n'; // outputs a double
注意必须有尖括号
std::cout << pi << '\n'; // 错误
变量模板也能由非类型参数参数化 ```cpp template
std::array arr{}; // 零初始化N个int元素的array
template
int main() { std::cout << x<’c’> << ‘\n’; // N有char类型值’c’ arr<10>[0] = 42; // 第一个元素设置为42(其他9个元素仍为0) for (auto x : arr<10>) std::cout << x << ‘ ‘; }
- 变量模板的一个用法是为类模板成员定义变量
```cpp
template<typename T>
class A {
public:
static constexpr int max = 1000;
};
template<typename T>
int myMax = A<T>::max;
// 使用时就可以直接写为
auto i = myMax<std::string>;
// 而不需要
auto i = A<std::string>::max;
- 另一个例子
```cpp
namespace std {
template
class numeric_limits { public: … static constexpr bool is_signed = false; … }; }
template
// 直接写为
isSigned
- C++17开始,标准库用变量模板简写了生成值的[type traits](https://zh.cppreference.com/w/cpp/header/type_traits)
```cpp
namespace std {
template<typename T>
constexpr bool is_const_v = is_const<T>::value;
}
std::is_const_v<T> // 不需要写为std::is_const<T>::value
模板的模板参数
用模板的模板参数,能做到只指定容器类型而不需要指定元素类型
Stack<int, std::vector<int>> s; // 通过模板的模板参数可以写为 Stack<int, std::vector> s;
为此必须把第二个模板参数指定为模板的模板参数
template<typename T, template<typename Elem> class Cont = std::deque> class Stack { public: void push(const T&); void pop(); const T& top() const; bool empty() const { return v.empty(); } private: Cont<T> v; };
因为Cont没有用到模板参数Elem,所以可以省略Elem
template<typename T, template<typename> class Cont = std::deque>
对于模板的模板参数Cont,C11之前只能用class关键字修饰,C11之后可以用别名模板的名称来替代,C++17中可以用typename修饰
// Since C++17 template<typename T, template<typename Elem> typename Cont = std::deque> class Stack { private: Cont<T> v; ... };
模板的模板实参匹配
使用前例的类模板时可能会产生错误,原因是容器还有另一个参数,即内存分配器allocator,C++17之前要求模板的模板实参精确匹配模板的模板参数,即便allocator本身有一个默认值,也不会被考虑用于匹配
template<typename T, template<typename Elem, typename Alloc = std::allocator<Elem>> class Cont = std::deque> class Stack { private: Cont<T> v; ... };
这里Alloc没被使用,因此也可以省略
template<typename T, template<typename Elem, typename = std::allocator<Elem>> class Cont = std::deque> class Stack { private: Cont<T> v; ... };
最终版本的Stack模板如下 ```cpp template
> class Cont = std::deque > class Stack { private: Cont v; public: void push(const T&); void pop(); const T& top() const; bool empty() const { return v.empty(); } template
> class Cont2 > Stack & operator=(const Stack &); template
class> friend class Stack; };
template
template
template
template
int main() {
Stack
Stack
Stack