partialorder2.cpp
来自「很经典的书籍」· C++ 代码 · 共 71 行
CPP
71 行
//: C05:PartialOrder2.cpp
// Reveals partial ordering of class templates
#include <iostream>
using namespace std;
template<class T, class U> class C {
public:
void f() {
cout << "Primary Template\n";
}
};
template<class U> class C<int, U> {
public:
void f() {
cout << "T == int\n";
}
};
template<class T> class C<T, double> {
public:
void f() {
cout << "U == double\n";
}
};
template<class T, class U> class C<T*, U> {
public:
void f() {
cout << "T* used \n";
}
};
template<class T, class U> class C<T, U*> {
public:
void f() {
cout << "U* used\n";
}
};
template<class T, class U> class C<T*, U*> {
public:
void f() {
cout << "T* and U* used\n";
}
};
template<class T> class C<T, T> {
public:
void f() {
cout << "T == U\n";
}
};
int main() {
C<float, int>().f(); // 1: Primary template
C<int, float>().f(); // 2: T == int
C<float, double>().f(); // 3: U == double
C<float, float>().f(); // 4: T == U
C<float*, float>().f(); // 5: T* used [T is float]
C<float, float*>().f(); // 6: U* used [U is float]
C<float*, int*>().f(); // 7: T* and U* used [float,int]
// The following are ambiguous:
// 8: C<int, int>().f();
// 9: C<double, double>().f();
// 10: C<float*, float*>().f();
// 11: C<int, int*>().f();
// 12: C<int*, int*>().f();
} ///:~
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?