如何使我的EXE可以在控制台上接受参数?

时间:2011-05-23 06:20:17

标签: c++ visual-c++ command-line-arguments

这是我用来玩的代码。我想让这段代码可以从控制台接受参数。

现在我只能用硬编码参数运行代码。在控制台,我只需输入Example1Client.exe并按Enter键。

我想发送如下参数:Example1Client.exe http://www.website.com

int main()
{
   RPC_STATUS status;
   unsigned char* szStringBinding = NULL;

   // Creates a string binding handle.
   // This function is nothing more than a printf.
   // Connection is not done here.
   status = RpcStringBindingCompose(
      NULL, // UUID to bind to.
      reinterpret_cast<unsigned char*>("ncacn_ip_tcp"), // Use TCP/IP
                                                        // protocol.
      reinterpret_cast<unsigned char*>("localhost"), // TCP/IP network
                                                     // address to use.
      reinterpret_cast<unsigned char*>("4747"), // TCP/IP port to use.
      NULL, // Protocol dependent network options to use.
      &szStringBinding); // String binding output.

      if (status)
      exit(status);

   // Validates the format of the string binding handle and converts
   // it to a binding handle.
   // Connection is not done here either.
      status = RpcBindingFromStringBinding(
      szStringBinding, // The string binding to validate.
      &hExample1Binding); // Put the result in the implicit binding
                          // handle defined in the IDL file.

   if (status)
      exit(status);

   RpcTryExcept
   {  
         visit("http://www.facebook.com");
         openNew("http://www.yahoo.com");
   }
   RpcExcept(1)
   {
      std::cerr << "Runtime reported exception " << RpcExceptionCode()
                << std::endl;
   }
   RpcEndExcept

   // Free the memory allocated by a string.
   status = RpcStringFree(
      &szStringBinding); // String to be freed.

   if (status)
      exit(status);

   // Releases binding handle resources and disconnects from the server.
   status = RpcBindingFree(
      &hExample1Binding); // Frees the implicit binding handle defined in
                          // the IDL file.

   if (status)
      exit(status);
}

// Memory allocation function for RPC.
// The runtime uses these two functions for allocating/deallocating
// enough memory to pass the string to the server.
void* __RPC_USER midl_user_allocate(size_t size)
{
    return malloc(size);
}

// Memory deallocation function for RPC.
void __RPC_USER midl_user_free(void* p)
{
    free(p);
}

1 个答案:

答案 0 :(得分:8)

将您的主要定义修改为:int main(int argc, char *argv[])而不是int main()。 在主要内部,您可以使用以下代码:

std::string url = "some default url";

if (argc > 1) {
   url = argv[1];
} 

关于Stackoverflow的类似问题:

  1. Passing filename as arguments in C
  2. Passing command line arguments