类模板的使用

直接看一个例子

#include 
using namespace std;
template
class Point
{
private:
	T1 m_x;//x坐标
	T2 m_y;//y坐标
public:
	Point(T1 x,T2 y):m_x(x),m_y(y){}
	T1 getX()const;//获取x坐标
	T2 getY()const;//获取y坐标
	void setX(T1 x);//设置x坐标
	void setY(T2 y);//设置y坐标
};

template//模板头
T1 Point::getX()const
{
	return m_x;
}

template
void Point::setX(T1 x)
{
	m_x=x;
}

template
T2 Point::getY()const
{
	return m_y;
}

template
void Point::setY(T2 y)
{
	m_y=y;
}

int main()
{
	Pointp1(10,20);
	cout<<"x="<p2("cc","gx");
	cout<<"x="<

运行结果

x=10,y=20
x=cc,y=gx

你可能感兴趣的:(c++)