- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
代码证明:
boost::program_options::options_description options;
Parser::Parser(): options("Allowed options")
{
options.add_options()
("help,h", "produce help message")
("type,t", po::value<std::string>()->required()->implicit_value(""), "Type")
}
这一行没问题:
("type,t", po::value<std::string>()->required()->implicit_value(""), "Type")
如何添加此行才能正常工作?:
("file,f", po::value< std::vector<std::string> >()->required()->multitoken()->implicit_value(std::vector<std::string>(0,"")), "File(s)")
这里是字符串-s的 vector 。
最佳答案
你只需要帮助选项描述就知道如何向最终用户呈现默认值。
也就是通常implicit_value
会用 lexical_cast<>
获取文本表示,但这(显然)不适用于 vector<string>
.因此,提供您自己的文本表示:
("file,f", po::value<strings>()->required()
->implicit_value(strings { "santa", "claus" }, "santa,claus"), "File(s)");
完整演示
#include <iostream>
#include <boost/program_options.hpp>
namespace po = boost::program_options;
int main(int argc, char** argv) {
po::options_description options/*("Allowed options")*/;
using strings = std::vector<std::string>;
options.add_options()
("help,h", "produce help message")
("file,f", po::value<strings>()->required()->implicit_value(strings { "santa", "claus" }, "santa,claus"), "File(s)");
std::cout << options << "\n";
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, options, po::command_line_style::default_style), vm);
po::notify(vm);
auto types = vm["file"].as<strings>();
for (auto t : types)
std::cout << "Got: " << t << "\n";
}
打印:
-h [ --help ] produce help message
-f [ --file ] [=arg(=santa,claus)] File(s)
Got: santa
Got: claus
关于c++ - 如何正确使用 boost::program_options::implicit_value 作为字符串 vector ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33453573/
我正在尝试解析从命令行输入的列表。 我的类是从向量派生的 编译器提示重载验证不明确。我知道为什么,但不知道如何解决这个问题。 请帮忙。 下面是一个生成错误的最小示例。如果将 ch_list 的类型更改
使用 boost::program_options,当它在命名空间内声明时,我无法获得自己的选项类型进行编译。但是在命名空间之外它编译并工作正常: #include using namespace
我目前正在尝试在我的模拟中实现 boost::program_options 库。在读取(许多)参数时,我想做这样的事情 namespace po = boost::program_options;
我目前正在尝试重做一些传递给我的代码。代码的原始点是读取配置文件,并在boost::program_options::variable_map中设置文件中的不同选项,然后读取该代码的其他所有部分,这些
我正在尝试使用 Boost::program_options 读取配置文件。配置文件如下所示: hier.arch.y.option_name = 0x5 another.hier.archy.set
#include #include #include #include void basic_approach(int argc, char const *argv[]) { try
我无法找出使用 boost::program_options 的链接错误。这是一个示例 C++ 代码: # sample_code.cpp #include int main() { boo
我正在尝试在配置文件的值中使用井号 ('#')。 我的用例是一个音乐程序,其中的值给出了吉他乐谱的调音。因此,在值中支持“#”是强制性的,并且不支持任何解决方法,这与可以使用“b”模拟的平面不同。 我
我正在尝试了解 program_options 自定义验证,以便将 python 代码转换为 c++ 代码。 无论如何 我在示例中读到我必须重载验证函数 我试图在 boost program_opti
我目前正在阅读 Boost.Program_options 教程。 这是他们介绍的一些代码: // Declare the supported options. po::options_descrip
海湾合作委员会 4.7.2/ boost 1.58.0 我正在尝试看起来像这样的代码,几乎完全取自文档中的示例: namespace po = boost::program_options; po::
我使用 ubuntu 10.04 和 libboost1.40。 ls -l /usr/lib | grep boost_pro -rw-r--r-- 1 root root 64080
boost::program_options 似乎支持某种级别的 custom validation但对我来说,验证是根据类型而不是每个参数编写的,这似乎很奇怪,我想知道我是否在这里遗漏了什么。 例如
构建我的项目时,Boost_LIBRARIES 不包含 program_options,即使它是必需的并且已找到。如果我手动添加它,它工作正常。我的 CMake 包含以下内容: find_packag
我对 boost::program_options 有疑问 我有课 namespace po = boost::program_options; class imageProcess{ private
program_options 是少数几个不只是头文件(因此需要单独编译)的 Boost 库之一。 我需要在未安装 Boost 的集群中运行我在 PC 上编译的程序。我没有安装 Boost 的管理权限
在 debian stretch 和 gcc 6.4.0 上,boost 1.66.0 boost::program_options 总是用空值解析命令行。代码如下: #include #inclu
我正在尝试从源代码构建第 3 方 C++ 库,它依赖于 Boost。在构建的最后一步,我得到了这样的错误: [ 90%] Linking CXX executable Shannon_RNASeq_C
我在使用 boost:program_options 时遇到问题 这个简单的程序,从 boosts 的文档中复制粘贴: #include int main( int argc, char** arg
一开始不解析参数,而是在程序已经运行了一段时间的某个时间解析从管道读取的输入字符串。 boost::program_options 可以这样做吗? 谢谢。编辑: 我必须在 python 中使用不同的参
我是一名优秀的程序员,十分优秀!