?? ji_he.cpp
字號:
#include "ji_he.h"ji_he::ji_he(void){}ji_he::ji_he(string name){ int num; string str; this->name=name; cout<<"請輸入集合"<<name<<"中元素個數:"; cin>>num; this->num=num; cout<<"現在輸入元素:"; for(int i=0;i<num;i++){ cin>>str; list.push_back(str); }}int ji_he::get_num(void){ return num;}string ji_he::get_name(void){ return name;}ji_he::~ji_he(){}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -