2015-11-04 86 views
-1

我使用这个代码:处理参数++不工作

int handleArgs(int argc, char *argv[]) { 

    if(argc <= 1) 
     {return 0;} 
    else 
     { // If no arguments, terminate, otherwise: handle args 

     for(int i=1; i<argc; i++) { 

      if (argv[i] == "-a" || argv[i] == "--admin") 
      {   // If admin argument 
       char *pwd = argv[i+1];   // i + 1 b/c we want the next argument; the password 

       if(pwd == "1729" || pwd == "GabeN") 
       {     // Verify Password 

       cout << "Sorry, console feature unavailable.\n" << endl;// Will replace with console function when I get to it 

       } 
       else 
       { 
        cout << "Wrong/No passkey, bruh.\n" << endl; 
       }  // If the password is wrong 


      } 
      else if (argv[i] == "-v" || argv[i] == "--version") 
      {  // If user asks for version info 

      cout << "You are running\nDev0.0.0" << endl;   // Tell the user the version 


      } 
      else if (argv[i]==" -h" || argv[i]=="--help") 
       { 

       cout << "Usage: " << argv[0] << " -[switch] argument(s)\n"; 
       cout << " -a, --admin  Open console view. Requires password\n"; 
       cout << " -v, --version  Print version and exit\n"; 
       cout << " -h, --help   Print this message and exit\n" << endl; 

       } 
       else { 
       cout << "Is you dumb?\n '" << argv[0] << " --help' for help" << endl;  // Insult the user 
        }      
     } 
    } 
    return 1; 
    } 

然而,每次我给它一个说法,我收到无效的参数消息(最后else语句):

Is you dumb? 
    'main --help' for help 

我是C++的新手,我不知道我在做什么(错误)。任何人都可以提供一些有用的见解吗?感谢

--FracturedCode

+0

你能告诉我你是如何传递参数...仅供参考.. –

+0

@MGP int main(int argc,char * argv []) – Gabe

+0

@MGP handleArgs(argc,argv); – Gabe

回答

3
argv

是C-字符串(char*)的阵列。您正在使用==并比较内存地址,而不是C++字符串提供的超载==运算符。您应该使用strncmp来比较您的字符串(它比strcmp更安全)。虽然在这里并不重要,因为你正在比较文字,这可以保证其中一个会结束。