對於我的項目我正在處理我想從命令提示符向用戶顯示可用的所有可用函數,現在無論如何顯示除打字之外的其他功能從任何一個如何在類中顯示功能
例如:
Functions I want displayed
bool status();
double getTime();
void setTime(int h, int min, int sec);
double getDate();
void setDate(int d,int m,int y);
void setAuto();
void turnOn();
void turnOff();
這些在一個類中聲明我已經叫Audio_Visual.h
//Have a small welcome text
cout << "Welcome to this Home Automation System" << endl;
cout << "Here Are a list of functions, please type what you want to do" << endl;
// DISPLAY FUNCTIONS
//display current function such as lights.setAuto();
string input = "";
//How to get a string/sentence with spaces
cout << "Please enter a valid function" << endl;
getline(cin, input);
cout << "You entered: " << input << endl << endl;
如何編寫了命令行的東西
你可以嘗試解析你的頭。但你沒有具體說明,你想要什麼? – zoska