有没有办法可以读取传递给 C++ wxWidgets 应用程序的命令行参数?如果是这样,您能否提供一个如何执行此操作的示例。
问问题
6149 次
3 回答
6
在纯 C++ 中,有argc
和argv
。当您构建 wxWidgets 应用程序时,您可以使用wxApp::argc
、wxApp::argv[]
或wxAppConsole::argc
、访问它们wxAppConsole::argv[]
。请注意,wxApp
它派生自wxAppConsole
,因此取决于您是否拥有控制台应用程序或 GUI 应用程序。见wxAppConsole
IMPLEMENT_APP(MyApp)
bool MyApp::OnInit() {
// Access command line arguments with wxApp::argc, wxApp::argv[0], etc.
// ...
}
您可能还对wxCmdLineParser感兴趣。
于 2012-04-12T20:15:41.587 回答
1
int main(int argc, char **argv)
{
wxApp::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, "program");
wxInitializer initializer;
if (!initializer)
{
fprintf(stderr, "Failed to initialize the wxWidgets library, aborting.");
return -1;
}
static const wxCmdLineEntryDesc cmdLineDesc[] =
{
{ wxCMD_LINE_SWITCH, "h", "help", "show this help message",
wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
// ... your other command line options here...
{ wxCMD_LINE_NONE }
};
wxCmdLineParser parser(cmdLineDesc, argc, wxArgv);
switch ( parser.Parse() )
{
case -1:
wxLogMessage(_T("Help was given, terminating."));
break;
case 0:
// everything is ok; proceed
break;
default:
wxLogMessage(_T("Syntax error detected, aborting."));
break;
}
return 0;
}
于 2012-04-12T06:29:31.870 回答
1
您可以从提供wxAppConsole::argc
和wxAppConsole::argvwxApp
的继承中访问命令行变量。wxAppConsole
于 2012-04-12T07:49:42.627 回答