简介

很多人使用界面来输入数据,本文的程序介绍如何使用Boost的program_options控制输入。

程序中使用了:

1. 短选项

2. 可以指定多个参数的选项


程序

#include <iostream>
#include <vector>
#include <string>
using namespace std;

// boost header files
#include <boost/program_options.hpp>
namespace boostpo = boost::program_options;
class Options
{
public:
    Options(int &argc, char** &argv){
        boostpo::options_description opts = boostpo::options_description("Allowed options");
        opts.add_options()
            ("help,h"         , "produce help message")
            ("int_opt,i"      , boostpo::value<int>()->default_value(0)        , "int option")
            ("string_opt,s"   , boostpo::value<std::string>()                  , "string option")
            ("float_opt,f"    , boostpo::value<float>()                        , "float option")
            ("multi_doubles,m", boostpo::value<vector<double> >()->multitoken(), "multiple doubles")
            ;
        boostpo::variables_map vm;
        try{
            boostpo::store(boostpo::parse_command_line(argc, argv, opts), vm);
        }
        catch (boost::exception &e){
            cerr << "wrong options" << endl;
            cout << opts << endl;
            exit(EXIT_FAILURE);
        }

        int_opt = vm["int_opt"].as<int>();

        if (vm.count("string_opt")){
            string_opt = vm["string_opt"].as<string>();
        }
        else{
            cout << opts << endl;
            cerr << "input string option please." << endl;
            exit(EXIT_FAILURE);
        }

        if (vm.count("float_opt")){
            float_opt = vm["float_opt"].as<float>();
        }
        else{
            cout << opts << endl;
            cerr << "input float option please." << endl;
            exit(EXIT_FAILURE);
        }

        if (vm.count("multi_doubles")){
            doubles_opt = vm["multi_doubles"].as<vector<double> >();
        }
        else{
            cout << opts << endl;
            cerr << "input multi_doubles option please." << endl;
            exit(EXIT_FAILURE);
        }
    }
public:
    int int_opt;
    float float_opt;
    std::string string_opt;
    vector<double> doubles_opt;
};

int main(int argc, char **argv){
    Options ops(argc, argv);
    cout << "int    option    : " << ops.int_opt << endl;
    cout << "string option    : " << ops.string_opt << endl;
    cout << "float  option    : " << ops.float_opt << endl;
    cout << "multiple doubles : ";
    for (size_t t = 0; t < ops.doubles_opt.size(); t++){
        cout << ops.doubles_opt[t] << " ";
    }
    return EXIT_SUCCESS;
}

实验

> demo.exe  -i 12 -s hello -f 11 -m 12.4 23.4
int    option    : 12
string option    : hello
float  option    : 11
multiple doubles : 12.4 23.4

使用Boost program_options控制程序输入的更多相关文章

  1. boost::program_options 解析命令行参数

    源码: #include <boost/program_options.hpp> namespace po = boost::program_options; int main(int a ...

  2. Boost命令行解释器的简单使用:Boost.Program_options

    简介 如果使用比较多的命令行程序的话,对于命令行参数的输入肯定不会陌生,大部分的程序都是通过类似下面的形式进行输入的,比如熟悉的ls ls --all -l --color=auto 这里面包含了三种 ...

  3. boost:program_options

    由于系统库getopt和getopt_long用起来不够直观,仔细看了下boost发现Boost.Program_options可以满足我的需求,它和getopt系列函数一样,可以抓起命令行参数,这里 ...

  4. boost之program_options库,解析命令行参数、读取配置文件

    一.命令行解析 tprogram_options解析命令行参数示例代码: #include <iostream> using namespace std; #include <boo ...

  5. boost库中的 program_options

    1.阅读rviz中的源码时在rviz/visualizer_app.cpp中遇到如下代码: po::options_description options; options.add_options() ...

  6. [C++Boost]程序参数项解析库Program_options使用指南

    介绍 程序参数项(program options)是一系列name=value对,program_options 允许程序开发者获得通过命令行(command line)和配置文件(config fi ...

  7. 使用Boost.PropertyTree处理XML、JSON和INI数据

    Boost.PropertyTree 应该是 Boost 1.41.0 开始正式加入 Boost 版本的.目前 ( 2010/02/28 ) 能下到的最新版本是 1.42.0. 主要作用/应用场合 B ...

  8. C++ 之Boost 实用工具类及简单使用

    本文将介绍几个 Boost 实用工具类,包括 tuple.static_assert.pool.random 和 program_options等等.需要对标准 STL 具备一定的了解才能充分理解本文 ...

  9. boost开发指南

    C++确实很复杂,神一样的0x不知道能否使C++变得纯粹和干爽? boost很复杂,感觉某些地方有过度设计和太过于就事论事的嫌疑,对实际开发工作的考虑太过于理想化.学习boost本身就是一个复杂度,有 ...

随机推荐

  1. Oracle:常用的一些基本操作

    表操作 查看系统中当前用户所有表: select * from user_tables;select * from user_indexs;select * from user_triggers; s ...

  2. node.js使用scp2来进行scp操作

    示例: var client = require('scp2'); client.scp({ host: '175.84.24.92', username: 'remoteusername', pas ...

  3. 在服务器上,配置redis可以外网访问

    首先linux开放默认端口6379打开redis配置文件redis-conf注释掉 bind 127.0.0.1(默认只有本地主要才能访问)这个注释掉现在处于受保护的状态,外网连不上,因为没有密码 在 ...

  4. [MongoDB教程] 1.简介

    MongoDB (名称来自「humongous (巨大无比的)」), 是一个可扩展的高性能,开源,模式自由,面向文档的NoSQL,基于 分布式 文件存储,由 C++ 语言编写,设计之初旨在为 WEB ...

  5. leetcode 717. 1-bit and 2-bit Characters -easy

    https://leetcode.com/problems/1-bit-and-2-bit-characters/description/ We have two special characters ...

  6. [LeetCode] Network Delay Time 网络延迟时间

    There are N network nodes, labelled 1 to N. Given times, a list of travel times as directed edges ti ...

  7. 在windows下使用cmd命令全速下载百度云文件

    在windows下使用cmd命令全速下载百度云文件 需要的工具BaiduPCS-GO(链接:https://pan.baidu.com/s/19Sn8gmNi_GZHJwUPu79DPg 密码:gqi ...

  8. Struts支持的contentType

    'ez' => 'application/andrew-inset', 'hqx' => 'application/mac-binhex40', 'cpt' => 'applicat ...

  9. Spring--bean的作用范围

    在Spring中,bean的作用范围分以下几种: singleton:spring ioc容器中仅有一个bean实例,bean以单例的方式存在 prototype:每次从容器中调用bean时,都返回一 ...

  10. bzoj 4547 小奇的集合

    Description 有一个大小为n的可重集S,小奇每次操作可以加入一个数a+b(a,b均属于S),求k次操作后它可获得的S的和的最大 值.(数据保证这个值为非负数) Input 第一行有两个整数n ...