加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
basevector.cpp 482 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZzqiZQute 提交于 2018-06-25 21:36 . 20186252136
#include "basevector.h"
BaseVector::BaseVector()
{
v1=0;
v2=0;
}
BaseVector::BaseVector(int v1, int v2)
{
this->v1=v1;
this->v2=v2;
bSelected=false;
}
bool BaseVector::getSelected() const
{
return bSelected;
}
void BaseVector::setSelected(bool value)
{
bSelected = value;
}
void BaseVector::set(int v1, int v2)
{
this->v1=v1;
this->v2=v2;
}
int BaseVector::getV1() const
{
return v1;
}
int BaseVector::getV2() const
{
return v2;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化