C++ 简单Vector模板类

本文介绍了初学者如何创建一个简单的C++ Vector模板类,使用template关键字实现n维向量的功能。在编写过程中,作者强调了几个关键点:模板类的函数定义需与头文件在同一cpp文件内;成员函数(包括友元函数)需指定模板参数;友元函数通常声明为非约束模板。文章提及目前的不足是缺少对模板深入理解和异常处理机制。
摘要由CSDN通过智能技术生成

刚接触类的相关内容,完成了简单的Vector模板类的项目。

用template <class T>来实现n维向量的相关性质。

写的时候其中有几个关键的地方

1.模板类的函数定义必须和头文件放在一个cpp文件里,系统不支持模板类的单独编译。

2.定义模板类的成员(友元)函数时,都要加 template <class T>  or template <typename T>。

3.对于模板类的友元函数,都声明成了非约束(unbound)模板友元。  ( 详见参考blog)

4.缺陷在于没有更细致的了解模板以及没有添加异常处理等情况。


以下简单代码实现

//vector.h

#ifndef vector_h
#define vector_h
#include <algorithm>
#include <cstring>
#include <math.h>
#include "vector.h"
#include<iostream>
using namespace std;

template<class T>
class vector
{
	public:
       vector();
	   vector(vector<T> &temp);
	   ~vector(){if(array !=NULL) delete array;}	
	   vector & operator=(const vector<T>& temp);
		
       template <typename TYPE> friend vector<TYPE> operator+(vector<TYPE> &temp1,vector<TYPE> &temp2);
       template <typename TYPE> friend vector<TYPE> operator-(vector<TYPE> &temp1,vector<TYPE> &temp2);
	   
	   T Find(T& temp);
	   T operator*(vector<T> &temp);
	   T norm (vector<T> &temp);
	   
	   
       vector & unit(vector<T> &temp);
	   
	   
       template <typename TYPE> friend vector<TYPE> Vector_Cross_Product(vector<TYPE> &temp1,vector<TYPE> &temp2);
	   template <typename TYPE> friend bool Perpendicular(vector<TYPE> &temp1,vector<TYPE> &temp2);
	   template <typename TYPE> friend bool Parallel(vector<TYPE> &temp1,vector<TYPE> &temp2);
	   template <typename TYPE> friend ostream & operator<<(ostream &out, const vector<TYPE> &temp);
	   template <typename TYPE> friend istream & operator>>(istream &in,vector<TYPE> &temp);
	   
	protected:
		T *array;
		int len;
		int sum;
};

//0.默认构造函数
template <class T>
vector<T&g
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值