如何在十六进制输入中使用boost options_description?

时间:2010-04-30 09:11:14

标签: c++ boost boost-program-options

我希望程序有两个选项,即起始地址和结束地址,以便程序选项如下:

--start_address 0xc0000000 --end_address 0xffffffff

options_description是否可以采用这种十六进制输入?我是否必须将输入视为字符串并将其转换为十六进制值。我现在有这个:

  po::options_description desc("Allowed options");

  desc.add_options()
    ("help,h", "display this help message")
    ("path,p", po::value<std::string>(), "Executable file path")
    ("start_address,s", po::value<std::string>(), "Start address")
    ("end_address,e", po::value<std::string>(), "End address")
    ;

boost::lexical_cast进行此类转换吗?

1 个答案:

答案 0 :(得分:5)

确定。刚刚发现我可以使用options_description输入选项,然后使用std :: stringstream解析选项以转换为十六进制数,如下所示

  boost::uint32_t start_address;
  std::stringstream interpreter;

  interpreter << std::hex << vm["start_address"].as<std::string>();

  interpreter >> start_address;