模板定义和实现分离:
1 #ifndef _TEST_H_
2 #define _TEST_H_
3
4 template <class T>
5 class test {
6 public:
7 test(T v1, T v2);
8 test();
9
10 int compare() const;
11 private:
12 T _v1;
13 T _v2;
14 };
15 //此处包含test.cpp实现分离
16 #include "test.cpp"
17
18 #endif
19
1 template<class T>
2 test<T>::test() : _v1(0),_v2(1) {
3
4 }
5
6 template<class T>
7 test<T>::test(T v1, T v2): _v1(v1),_v2(v2) {
8
9 }
10
11 template<class T>
12 int test<T>::compare() const {
13 return _v1>_v2?1:-1;
14 }
15
1 #include <iostream>
2 #include "test.h"
3
4 using namespace std;
5
6 int main() {
7 cout << "输入两个数:" << endl;
8 int value1,value2;
9 cin >> value1 >> value2;
10 test<int> t(value1,value2);
11 cout << t.compare() <<endl;
12
13 return 1;
14 }
15
16
g++ main.cpp -o main编译通过
这个可以作用于函数模板和类模板
C++标准有一个export关键字用来实现模板的定义和实现分离的,只是到现在没有找到支持这个关键字的编译器,有点扯淡。
摘要: 现在正在看数据结构,感觉清华大学出版的《数据结构与C++高级教程(第3版)》里翻译有很多逻辑上的错误,虽然如此,但书上还是有很多不错的地方的。今天看到链表,算是复习一下,先把代码帖出来,慢慢再总结:listitem.h:
Code
Code highlighting produced by Actipro CodeHi...
阅读全文