本文整理汇总了C++中UserList::completeList方法的典型用法代码示例。如果您正苦于以下问题:C++ UserList::completeList方法的具体用法?C++ UserList::completeList怎么用?C++ UserList::completeList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserList
的用法示例。
在下文中一共展示了UserList::completeList方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(){
int selection = 0;
int userselection = 0;
std::string username;
UserList *UserListDatabase = new UserList;
UserListDatabase->importUserDatabase();
UserListDatabase->completeList();
cout << " ConnectMe v2.0 " << endl;
cout << "*-------------------------------*" << endl;
cout << "| 1. Login as a user. |" << endl;
cout << "| 2. Create a new user. |" << endl;
cout << "| 3. Quit the program |" << endl;
cout << "*-------------------------------*" << endl;
while (selection != 3)
{
cout << "Selection: ";
cin >> selection;
if (cin.fail())
{
cin.clear();
cin.ignore(1024, '\n');
cout << "Invalid Selection." << endl;
continue;
}
cin.clear();
cin.ignore(1024,'\n');
cout << endl;
switch (selection)
{
// Login function
case 1:
{
cout << "Please enter your username." << endl;
cout << "Username: ";
cin >> username;
User* currentUser = UserListDatabase->checkUser(username);
if (currentUser != NULL){
cout << "Welcome back " << username << "!" << endl;
cout << endl;
usermenu();
while (userselection !=11){
cout << "Selection: ";
cin >> userselection;
if (cin.fail()){
cin.clear();
cin.ignore(1024, '\n');
cout << "Invalid Selection." << endl;
continue;
}
cin.clear();
cin.ignore(1024,'\n');
cout << endl;
switch (userselection){
case 1: // display all wall post
{
currentUser->getWall()->printWallPosts();
cout << endl;
usermenu();
break;
}
case 2: // create a new wall post
{
string newmessage;
char messagepost[512];
cout << "Please enter a status update to your wall." << endl;
cin.getline(messagepost,512);
newmessage = messagepost;
currentUser->addWallPost(newmessage);
cout << endl;
usermenu();
break;
}
case 3: // delete a wallpost
{
int id;
cout << "Please enter the post ID number you wish to remove." << endl;
cin >> id;
currentUser->removeWallPost(id);
break;
}
case 4: // edit personal information
{
currentUser->editInformation();
cout << endl;
usermenu();
break;
}
case 5: // display personal information
{
currentUser->printInformation();
cout << endl;
usermenu();
//.........这里部分代码省略.........