以class Vector 为例

Vector::Vector(const Vector& a)
{
 this->setlenth(a.length);
 for(int i=0;i<a.length;i++)
  this->p[i]=a.p[i];
}

posted on 2017-05-26 15:55  么训  阅读(1260)  评论(0编辑  收藏  举报