?? choose.cpp
字號:
#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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -