choose.cpp

来自「学生管理系统 使用Qt写的界面 交互性好」· C++ 代码 · 共 40 行

CPP
40
字号
#include "Choose.h"

Choose::Choose(string ch, string s, string c)
{
	this->ChID = ch;
	this->SID = s;
	this->CID = c;
}

void Choose::setCID(string c)
{
	this->CID = c;
}

void Choose::setChID(string ch)
{
	this->ChID = ch;
}

void Choose::setSID(string s)
{
	this->SID = s;
}

string Choose::getCID() const
{
	return this->CID;
}

string Choose::getChID() const
{
	return this->ChID;
}

string Choose::getSID() const
{
	return this->SID;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?