深入模板编程笔记二

//链表
template
struct hetero_node {//effective stl说过,访问数据永远比访问方法快,所以尽量用struct
	t value;
	n* next;
	hetero_node(t const& v, n* n1): value(v), next(n) {}
};

typedef hetero_node node_0;
node_0* p0;
typedef hetero_node node_1;
node_1* p1;
typedef hetero_node node_2;
node_2* p2;

void main()
{
	p1->next = p0;
	p2->next = p1;
	//很佩服这样的思路,用模板封装基链表,然后自己扩展链接。
	system("pause");
}



//静态变量
the_class_1.h
template
struct the_class {
	static int id;
	the_class() {id++;}
};
template int the_class::id = 1;//注意

the_class_2.h
template
struct the_class {
	static int id;
	the_class() {id++;}
};
template int the_class::id = 0;//注意

//call1.cpp
#include "the_class1.h"
void call1() {
	the_class c;
	std::cout< c;
	std::cout << c.id;
}
//main.cpp
void call1();
void call2();
void main()
{
	call1();
	call2();
	system("pause");
}//测试后,发现访问了同一个模板函数,访问了同一个静态成员变量。     也就是说永远以第一次,识别创建的对象为主。前篇理论一样。


你可能感兴趣的:(看书)