0

我有这个工作代码:

/* Include files */
#include <iostream>
#include <string>
#include <limits>

using namespace std;

void fnMainMenu(char s);

/******************************************************************************
* Function: fnUpdateSalary
* Description: Update employee salary
******************************************************************************/
void fnUpdateSalary()
{   
    int choice = 0;
    char data = 'a';
    incorrect_input: // goto teleport exit :)
    cout<<"\n\t=======================";
    cout<<"\n\tWelcome\n";
    cout<<"\t=======================\n\n";
    cout<<"1. Update employee salary\n";
    cout<<"2. Main menu\n";
    cout<<"3. Exit system\n";
    cout<<"\n >> ";

    cin>>choice;
    cin.clear();
    cin.ignore(numeric_limits<streamsize>::max(),'\n');

    switch(choice){
        case 1 : 
            //fnUpdateSalary();
            break;
        case 2 : 
            fnMainMenu(data);
            break;
        case 3 : 
            exit(1);
            break;
        default :   
        cout<<"Input not recognized. Please enter the correct input.\n";


    }
}

void fnLog()
{   
 char data = 'b';
fnMainMenu(data); // call Main Menu and I want to pass "hello"
}





/******************************************************************************
* Function: fnMainMenu
* Description: Menu for the customer 
******************************************************************************/
void fnMainMenu(char s)
{   
     cout << s;

if (s == 'a')
{ cout << "a = admin";
}
else
{cout << "\n\nb not admin";
}

    //system("cls");
    int chooice = 0;

    cout<<"\n\t=======================";
    cout<<"\n\tWelcome\n";
    cout<<"\t=======================\n\n";
    cout<<"1. Manage employee\n";
    cout<<"2. Search employee\n";
    cout<<"3. Employee report\n";
    cout<<"4. Reset password\n";
    cout<<"5. Exit system\n";
    cout<<"\n >> ";
int numbers = 2;
    cin>>chooice;
    cin.clear();
    cin.ignore(numeric_limits<streamsize>::max(),'\n');

    switch(chooice){
        case 1 : 
            fnUpdateSalary();
            break;
        case 4 : 
        //  fnChangePassword();
            break;          
        default : exit(1);

    }
}


/******************************************************************************
* Function: main
* Description: The main calling function
******************************************************************************/
int main()
{   

    fnLog();
    return 0;
}

fnLog()发送bfnMainMenu(). 当我在时,fnUpdateSalary()我想再去fnMainMenu()一次。我的问题是,在不再次声明变量的情况下,是否有fnUpdateSalary()任何可调用的函数?我希望我可以使用而不是 fnMainMenu()datafnMainMenu();

char data = 'r'; fnMainMenu(data);

error C2660: 'fnMainMenu' : function does not take 0 arguments如果我刚刚打电话,我会收到此错误fnMainMenu();

我希望我的问题有意义。提前致谢。

4

3 回答 3

1

无论如何,该参数似乎没有真正的用途。传递b到主菜单功能当然没有任何效果。如果您只想区分管理员和非管理员访问权限,请更改参数的类型和用法:

void fnMainMenu(bool is_admin) {
    if (is_admin)
        cout << "Admin\n";
    else
        cout << "Not admin\n";
}

并这样称呼它:

fnMainMenu(true);
// Or, alternatively:
fnMainMenu(false);

就是这样。顺便说一句,您不需要(也不应该!)在此处声明要作为参数传递的变量。只需直接传递值,就像我在上面所做的那样。

另外,为什么您的函数名称以 ? 为前缀fn?不要这样做,这不是一个好习惯。只需使用能够很好地解释函数功能的专有名称即可。

于 2012-12-02T19:57:39.147 回答
0

由于您正在编写 C++ 代码,并且data在应用程序逻辑方面似乎相对较长,因此将这些函数重新组合到一个类中可能是有意义的。

data可以是此类的数据成员,并且fnUpdateSalary, fnLog,fnMainMenu方法。

class Application {
public:
  Application ()
  : data ('b') // default value
  { }

  void fnLog() {
    data = 'b';
    fnMainMenu ();
  }

  void fnMainMenu() {
    if (data == 'a')
      cout << "a = admin";
    else
      cout << "\n\nb not admin";

    // ...
    fnUpdateSalary ();
    // ...
  }

  void fnUpdateSalary() {
    // ...
    fnMainMenu ();
    // ...
  }


private:
  char data;
};

int main () {
  Application app;
  app.fnLog ();
}
于 2012-12-02T19:43:35.810 回答
0

如果我完全理解您在做什么,您需要将两件事结合起来。首先是 fnMainMenu 中的静态变量,其次是默认参数:

fnMainMenu(char s = '\0')
{
  static char c;
  if(s != '\0') c = s;
  ...
  ...
}

“静态”关键字意味着该字符将在函数调用中保留。默认参数意味着 s 将被分配一个空终止字符,除非您显式传递另一个值。

于 2012-12-02T19:44:08.630 回答