boost::program_options - 是否可以强制执行强制标志?
我在程序中使用 boost::program_options 。我想强制使用某个标志。是否可以使用 program_options 来执行此操作,使其自行强制执行?即抛出错误消息?
I'm using boost::program_options in my program. I want to make a certain flag mandatory. Is is possible to do this with program_options in a way that it'll enforce this itself? i.e., throw an error message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档 您可以在选项描述中指定一个选项是必需的:
According to the documentation you can specify that an option is required in the option description: