boost::program_options:如何获取应用程序名称?
使用 Boost 程序选项,如何获得 argv[0] 等价的字符串?
Using Boost Program Options, how do you get the string equivalent of argv[0]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的。这可能是因为程序名称也可以合法地用作选项名称。
命令行解析器代码显式跳过相关的 argv 成员:
I don't think this is possible. This may be because the program name could also legally be used as an option name.
The command line parser code explicitly skips the relevant
argv
member: